New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@coreui/coreui-pro

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coreui/coreui-pro - npm Package Compare versions

Comparing version 2.0.8 to 2.0.9

14

CHANGELOG.md

@@ -1,2 +0,13 @@

=======
## v2.0.9
- fix(sidebar) remove scrollbar when `sidebar-minimized`
- refactor(sidebar) extract `makeScrollbar()` and `destroyScrollbar()`
- chore: update `@babel/cli` to `7.1.0`
- chore: update `@babel/core` to `7.1.0`
- chore: update `@babel/plugin-transform-runtime` to `7.1.0`
- chore: update `@babel/preset-env` to `7.1.0`
- chore: update `copyfiles` to `2.1.0`
- chore: update `eslint` to `5.6.0`
- chore: update `rollup` to `0.66.2`
- chore: update `stylelint-scss` to `3.3.1`
## v2.0.8

@@ -63,3 +74,2 @@ - fix(sidebar) minimizing sidebar with bottom chevron does not allow to maximize it again #404

>>>>>>> 44dcda9b743365ac454c57725263ca6adbc95749
## v2.0.4

@@ -66,0 +76,0 @@ - **Refactor: SCSS Variables**

10

dist/js/coreui-utilities.js
/*!
* CoreUI Pro v2.0.8 (https://coreui.io/pro/)
* CoreUI Pro v2.0.9 (https://coreui.io/pro/)
* Copyright 2018 Łukasz Holeczek

@@ -13,3 +13,3 @@ */

* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): get-style.js
* CoreUI Utilities (v2.0.9): get-style.js
* Licensed under MIT (https://coreui.io/license)

@@ -81,3 +81,3 @@ * --------------------------------------------------------------------------

* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): hex-to-rgb.js
* CoreUI Utilities (v2.0.9): hex-to-rgb.js
* Licensed under MIT (https://coreui.io/license)

@@ -118,3 +118,3 @@ * --------------------------------------------------------------------------

* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): hex-to-rgba.js
* CoreUI Utilities (v2.0.9): hex-to-rgba.js
* Licensed under MIT (https://coreui.io/license)

@@ -159,3 +159,3 @@ * --------------------------------------------------------------------------

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): rgb-to-hex.js
* CoreUI (v2.0.9): rgb-to-hex.js
* Licensed under MIT (https://coreui.io/license)

@@ -162,0 +162,0 @@ * --------------------------------------------------------------------------

/*!
* CoreUI Pro v2.0.8 (https://coreui.io/pro/)
* CoreUI Pro v2.0.9 (https://coreui.io/pro/)
* Copyright 2018 Łukasz Holeczek

@@ -4,0 +4,0 @@ */

/*!
* CoreUI Pro v2.0.8 (https://coreui.io/pro/)
* CoreUI Pro v2.0.9 (https://coreui.io/pro/)
* Copyright 2018 Łukasz Holeczek

@@ -32,3 +32,3 @@ */

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): ajax-load.js
* CoreUI (v2.0.9): ajax-load.js
* Licensed under MIT (https://coreui.io/license)

@@ -45,3 +45,3 @@ * --------------------------------------------------------------------------

var NAME = 'ajaxLoad';
var VERSION = '2.0.8';
var VERSION = '2.0.9';
var DATA_KEY = 'coreui.ajaxLoad';

@@ -239,3 +239,3 @@ var JQUERY_NO_CONFLICT = $$$1.fn[NAME];

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): toggle-classes.js
* CoreUI (v2.0.9): toggle-classes.js
* Licensed under MIT (https://coreui.io/license)

@@ -265,3 +265,3 @@ * --------------------------------------------------------------------------

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): aside-menu.js
* CoreUI (v2.0.9): aside-menu.js
* Licensed under MIT (https://coreui.io/license)

@@ -278,3 +278,3 @@ * --------------------------------------------------------------------------

var NAME = 'aside-menu';
var VERSION = '2.0.8';
var VERSION = '2.0.9';
var DATA_KEY = 'coreui.aside-menu';

@@ -376,3 +376,3 @@ var EVENT_KEY = "." + DATA_KEY;

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): sidebar.js
* CoreUI (v2.0.9): sidebar.js
* Licensed under MIT (https://coreui.io/license)

@@ -389,3 +389,3 @@ * --------------------------------------------------------------------------

var NAME = 'sidebar';
var VERSION = '2.0.8';
var VERSION = '2.0.9';
var DATA_KEY = 'coreui.sidebar';

@@ -440,2 +440,3 @@ var EVENT_KEY = "." + DATA_KEY;

this._element = element;
this.ps = null;
this.perfectScrollbar(Event.INIT);

@@ -452,17 +453,11 @@ this.setActiveLink();

_proto.perfectScrollbar = function perfectScrollbar(event) {
var _this = this;
if (typeof PerfectScrollbar !== 'undefined') {
var ps;
if (event === Event.INIT && !document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
this.ps = this.makeScrollbar();
}
if (event === Event.DESTROY) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
ps.destroy();
ps = null;
this.destroyScrollbar();
}

@@ -472,20 +467,14 @@

if (document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
ps.destroy();
ps = null;
this.destroyScrollbar();
} else {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
this.ps = this.makeScrollbar();
}
}
if (event === Event.UPDATE) {
if (event === Event.UPDATE && !document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
// ToDo: Add smooth transition
setTimeout(function () {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
_this.destroyScrollbar();
_this.ps = _this.makeScrollbar();
}, Default.transition);

@@ -496,2 +485,19 @@ }

_proto.makeScrollbar = function makeScrollbar(container) {
if (container === void 0) {
container = Selector.NAVIGATION_CONTAINER;
}
return new PerfectScrollbar(document.querySelector(container), {
suppressScrollX: true
});
};
_proto.destroyScrollbar = function destroyScrollbar() {
if (this.ps) {
this.ps.destroy();
this.ps = null;
}
};
_proto.setActiveLink = function setActiveLink() {

@@ -517,3 +523,3 @@ $$$1(Selector.NAVIGATION).find(Selector.NAV_LINK).each(function (key, value) {

_proto._addEventListeners = function _addEventListeners() {
var _this = this;
var _this2 = this;

@@ -531,3 +537,3 @@ $$$1(Selector.BRAND_MINIMIZER).on(Event.CLICK, function (event) {

_this.perfectScrollbar(Event.UPDATE);
_this2.perfectScrollbar(Event.UPDATE);
});

@@ -539,3 +545,3 @@ $$$1(Selector.SIDEBAR_MINIMIZER).on(Event.CLICK, function (event) {

_this.perfectScrollbar(Event.TOGGLE);
_this2.perfectScrollbar(Event.TOGGLE);
});

@@ -606,3 +612,3 @@ $$$1(Selector.SIDEBAR_TOGGLER).on(Event.CLICK, function (event) {

* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): get-style.js
* CoreUI Utilities (v2.0.9): get-style.js
* Licensed under MIT (https://coreui.io/license)

@@ -674,3 +680,3 @@ * --------------------------------------------------------------------------

* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): hex-to-rgb.js
* CoreUI Utilities (v2.0.9): hex-to-rgb.js
* Licensed under MIT (https://coreui.io/license)

@@ -711,3 +717,3 @@ * --------------------------------------------------------------------------

* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): hex-to-rgba.js
* CoreUI Utilities (v2.0.9): hex-to-rgba.js
* Licensed under MIT (https://coreui.io/license)

@@ -752,3 +758,3 @@ * --------------------------------------------------------------------------

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): rgb-to-hex.js
* CoreUI (v2.0.9): rgb-to-hex.js
* Licensed under MIT (https://coreui.io/license)

@@ -778,3 +784,3 @@ * --------------------------------------------------------------------------

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): index.js
* CoreUI (v2.0.9): index.js
* Licensed under MIT (https://coreui.io/license)

@@ -781,0 +787,0 @@ * --------------------------------------------------------------------------

/*!
* CoreUI Pro v2.0.8 (https://coreui.io/pro/)
* CoreUI Pro v2.0.9 (https://coreui.io/pro/)
* Copyright 2018 Łukasz Holeczek
*/
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("jquery"),require("perfect-scrollbar")):"function"==typeof define&&define.amd?define(["exports","jquery","perfect-scrollbar"],t):t(e.coreui={},e.jQuery,e.PerfectScrollbar)}(this,function(e,t,r){"use strict";function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function a(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}t=t&&t.hasOwnProperty("default")?t.default:t,r=r&&r.hasOwnProperty("default")?r.default:r;var i,n,s,u,c,d,l,f,p,g,h,m,v,b,y,w,I,C,_,T,S,L,E,j,A,P,x,D,O,k,Q,q,U,N,G,K,R,H,M,V,X,z,B,J,Y,$,F=(n="ajaxLoad",s="coreui.ajaxLoad",u=(i=t).fn[n],c="active",d="open",l="view-script",f="click",p=".sidebar-nav .nav-dropdown",g=".sidebar-nav .nav-link",h=".sidebar-nav .nav-item",m=".view-script",v={defaultPage:"main.html",errorPage:"404.html",subpagesDirectory:"views/"},b=function(){function n(e,t){this._config=this._getConfig(t),this._element=e;var n=location.hash.replace(/^#/,"");""!==n?this.setUpUrl(n):this.setUpUrl(this._config.defaultPage),this._addEventListeners()}var e=n.prototype;return e.loadPage=function(r){var o=this._element,e=this._config;i.ajax({type:"GET",url:e.subpagesDirectory+r,dataType:"html",beforeSend:function(){i(m).remove()},success:function(e){var t=document.createElement("div");t.innerHTML=e;var n=Array.from(t.querySelectorAll("script")).map(function(e){return e.attributes.getNamedItem("src").nodeValue});t.querySelectorAll("script").forEach(function(e){return e.parentNode.removeChild(e)}),i("body").animate({scrollTop:0},0),i(o).html(t),n.length&&function e(t,n){void 0===n&&(n=0);var r=document.createElement("script");r.type="text/javascript",r.src=t[n],r.className=l,r.onload=r.onreadystatechange=function(){this.readyState&&"complete"!==this.readyState||t.length>n+1&&e(t,n+1)},document.getElementsByTagName("body")[0].appendChild(r)}(n),window.location.hash=r},error:function(){window.location.href=e.errorPage}})},e.setUpUrl=function(e){i(g).removeClass(c),i(p).removeClass(d),i(p+':has(a[href="'+e.replace(/^\//,"").split("?")[0]+'"])').addClass(d),i(h+' a[href="'+e.replace(/^\//,"").split("?")[0]+'"]').addClass(c),this.loadPage(e)},e.loadBlank=function(e){window.open(e)},e.loadTop=function(e){window.location=e},e._getConfig=function(e){return e=Object.assign({},v,e)},e._addEventListeners=function(){var t=this;i(document).on(f,g+'[href!="#"]',function(e){e.preventDefault(),e.stopPropagation(),"_top"===e.currentTarget.target?t.loadTop(e.currentTarget.href):"_blank"===e.currentTarget.target?t.loadBlank(e.currentTarget.href):t.setUpUrl(e.currentTarget.getAttribute("href"))})},n._jQueryInterface=function(t){return this.each(function(){var e=i(this).data(s);e||(e=new n(this,"object"==typeof t&&t),i(this).data(s,e))})},a(n,null,[{key:"VERSION",get:function(){return"2.0.8"}},{key:"Default",get:function(){return v}}]),n}(),i.fn[n]=b._jQueryInterface,i.fn[n].Constructor=b,i.fn[n].noConflict=function(){return i.fn[n]=u,b._jQueryInterface},b),W=function(e,t){var n=t.indexOf(e),r=t.slice(0,n+1);-1!==r.map(function(e){return document.body.classList.contains(e)}).indexOf(!0)?r.map(function(e){return document.body.classList.remove(e)}):document.body.classList.add(e)},Z=(w="aside-menu",I="coreui.aside-menu",C=(y=t).fn[w],_={CLICK:"click",LOAD_DATA_API:"load.coreui.aside-menu.data-api",TOGGLE:"toggle"},T=".aside-menu",S=".aside-menu-toggler",L=["aside-menu-show","aside-menu-sm-show","aside-menu-md-show","aside-menu-lg-show","aside-menu-xl-show"],E=function(){function n(e){this._element=e,this._addEventListeners()}return n.prototype._addEventListeners=function(){y(S).on(_.CLICK,function(e){e.preventDefault(),e.stopPropagation();var t=e.currentTarget.dataset.toggle;W(t,L)})},n._jQueryInterface=function(){return this.each(function(){var e=y(this),t=e.data(I);t||(t=new n(this),e.data(I,t))})},a(n,null,[{key:"VERSION",get:function(){return"2.0.8"}}]),n}(),y(window).on(_.LOAD_DATA_API,function(){var e=y(T);E._jQueryInterface.call(e)}),y.fn[w]=E._jQueryInterface,y.fn[w].Constructor=E,y.fn[w].noConflict=function(){return y.fn[w]=C,E._jQueryInterface},E),ee=(A="sidebar",P="coreui.sidebar",x=(j=t).fn[A],D=400,O="active",k="brand-minimized",Q="open",q="sidebar-minimized",U={CLICK:"click",DESTROY:"destroy",INIT:"init",LOAD_DATA_API:"load.coreui.sidebar.data-api",TOGGLE:"toggle",UPDATE:"update"},N="body",G=".brand-minimizer",K=".nav-dropdown-toggle",R=".nav-dropdown-items",H=".nav-item",M=".nav-link",V=".sidebar-nav",X=".sidebar-nav > .nav",z=".sidebar",B=".sidebar-minimizer",J=".sidebar-toggler",Y=["sidebar-show","sidebar-sm-show","sidebar-md-show","sidebar-lg-show","sidebar-xl-show"],$=function(){function n(e){this._element=e,this.perfectScrollbar(U.INIT),this.setActiveLink(),this._addEventListeners()}var e=n.prototype;return e.perfectScrollbar=function(e){"undefined"!=typeof r&&(e!==U.INIT||document.body.classList.contains(q)||new r(document.querySelector(V),{suppressScrollX:!0}),e===U.DESTROY&&new r(document.querySelector(V),{suppressScrollX:!0}).destroy(),e===U.TOGGLE&&(document.body.classList.contains(q)?new r(document.querySelector(V),{suppressScrollX:!0}).destroy():new r(document.querySelector(V),{suppressScrollX:!0})),e===U.UPDATE&&setTimeout(function(){new r(document.querySelector(V),{suppressScrollX:!0})},D))},e.setActiveLink=function(){j(X).find(M).each(function(e,t){var n=t,r=String(window.location).split("?")[0];"#"===r.substr(r.length-1)&&(r=r.slice(0,-1)),j(j(n))[0].href===r&&j(n).addClass(O).parents(R).add(n).each(function(e,t){j(n=t).parent().addClass(Q)})})},e._addEventListeners=function(){var n=this;j(G).on(U.CLICK,function(e){e.preventDefault(),e.stopPropagation(),j(N).toggleClass(k)}),j(K).on(U.CLICK,function(e){e.preventDefault(),e.stopPropagation();var t=e.target;j(t).parent().toggleClass(Q),n.perfectScrollbar(U.UPDATE)}),j(B).on(U.CLICK,function(e){e.preventDefault(),e.stopPropagation(),j(N).toggleClass(q),n.perfectScrollbar(U.TOGGLE)}),j(J).on(U.CLICK,function(e){e.preventDefault(),e.stopPropagation();var t=e.currentTarget.dataset.toggle;W(t,Y)}),j(X+" > "+H+" "+M+":not("+K+")").on(U.CLICK,function(){document.body.classList.remove("sidebar-show")})},n._jQueryInterface=function(){return this.each(function(){var e=j(this),t=e.data(P);t||(t=new n(this),e.data(P,t))})},a(n,null,[{key:"VERSION",get:function(){return"2.0.8"}}]),n}(),j(window).on(U.LOAD_DATA_API,function(){var e=j(z);$._jQueryInterface.call(e)}),j.fn[A]=$._jQueryInterface,j.fn[A].Constructor=$,j.fn[A].noConflict=function(){return j.fn[A]=x,$._jQueryInterface},$);!function(e){if("undefined"==typeof e)throw new TypeError("CoreUI's JavaScript requires jQuery. jQuery must be included before CoreUI's JavaScript.");var t=e.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||4<=t[0])throw new Error("CoreUI's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(t),window.getStyle=function(e,t){var n;void 0===t&&(t=document.body),n=e.match(/^--.*/i)&&Boolean(document.documentMode)&&10<=document.documentMode?function(){for(var r={},e=document.styleSheets,t="",n=e.length-1;-1<n;n--){for(var o=e[n].cssRules,a=o.length-1;-1<a;a--)if(".ie-custom-properties"===o[a].selectorText){t=o[a].cssText;break}if(t)break}return(t=t.substring(t.lastIndexOf("{")+1,t.lastIndexOf("}"))).split(";").forEach(function(e){if(e){var t=e.split(": ")[0],n=e.split(": ")[1];t&&n&&(r["--"+t.trim()]=n.trim())}}),r}()[e]:window.getComputedStyle(t,null).getPropertyValue(e).replace(/^\s/,"");return n},window.hexToRgb=function(e){if("undefined"==typeof e)throw new Error("Hex color is not defined");var t,n,r;if(!e.match(/^#(?:[0-9a-f]{3}){1,2}$/i))throw new Error(e+" is not a valid hex color");return r=7===e.length?(t=parseInt(e.substring(1,3),16),n=parseInt(e.substring(3,5),16),parseInt(e.substring(5,7),16)):(t=parseInt(e.substring(1,2),16),n=parseInt(e.substring(2,3),16),parseInt(e.substring(3,5),16)),"rgba("+t+", "+n+", "+r+")"},window.hexToRgba=function(e,t){if(void 0===t&&(t=100),"undefined"==typeof e)throw new Error("Hex color is not defined");var n,r,o;if(!e.match(/^#(?:[0-9a-f]{3}){1,2}$/i))throw new Error(e+" is not a valid hex color");return o=7===e.length?(n=parseInt(e.substring(1,3),16),r=parseInt(e.substring(3,5),16),parseInt(e.substring(5,7),16)):(n=parseInt(e.substring(1,2),16),r=parseInt(e.substring(2,3),16),parseInt(e.substring(3,5),16)),"rgba("+n+", "+r+", "+o+", "+t/100+")"},window.rgbToHex=function(e){if("undefined"==typeof e)throw new Error("Hex color is not defined");var t=e.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i);if(!t)throw new Error(e+" is not a valid rgb color");var n="0"+parseInt(t[1],10).toString(16),r="0"+parseInt(t[2],10).toString(16),o="0"+parseInt(t[3],10).toString(16);return"#"+n.slice(-2)+r.slice(-2)+o.slice(-2)},e.AjaxLoad=F,e.AsideMenu=Z,e.Sidebar=ee,Object.defineProperty(e,"__esModule",{value:!0})});
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("jquery"),require("perfect-scrollbar")):"function"==typeof define&&define.amd?define(["exports","jquery","perfect-scrollbar"],t):t(e.coreui={},e.jQuery,e.PerfectScrollbar)}(this,function(e,t,r){"use strict";function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function a(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}t=t&&t.hasOwnProperty("default")?t.default:t,r=r&&r.hasOwnProperty("default")?r.default:r;var i,n,s,c,u,d,l,f,p,h,g,m,b,v,y,w,I,C,_,T,S,L,E,j,A,P,x,D,O,k,Q,U,q,N,G,K,R,H,M,V,z,B,J,Y,$,X,F=(n="ajaxLoad",s="coreui.ajaxLoad",c=(i=t).fn[n],u="active",d="open",l="view-script",f="click",p=".sidebar-nav .nav-dropdown",h=".sidebar-nav .nav-link",g=".sidebar-nav .nav-item",m=".view-script",b={defaultPage:"main.html",errorPage:"404.html",subpagesDirectory:"views/"},v=function(){function n(e,t){this._config=this._getConfig(t),this._element=e;var n=location.hash.replace(/^#/,"");""!==n?this.setUpUrl(n):this.setUpUrl(this._config.defaultPage),this._addEventListeners()}var e=n.prototype;return e.loadPage=function(r){var o=this._element,e=this._config;i.ajax({type:"GET",url:e.subpagesDirectory+r,dataType:"html",beforeSend:function(){i(m).remove()},success:function(e){var t=document.createElement("div");t.innerHTML=e;var n=Array.from(t.querySelectorAll("script")).map(function(e){return e.attributes.getNamedItem("src").nodeValue});t.querySelectorAll("script").forEach(function(e){return e.parentNode.removeChild(e)}),i("body").animate({scrollTop:0},0),i(o).html(t),n.length&&function e(t,n){void 0===n&&(n=0);var r=document.createElement("script");r.type="text/javascript",r.src=t[n],r.className=l,r.onload=r.onreadystatechange=function(){this.readyState&&"complete"!==this.readyState||t.length>n+1&&e(t,n+1)},document.getElementsByTagName("body")[0].appendChild(r)}(n),window.location.hash=r},error:function(){window.location.href=e.errorPage}})},e.setUpUrl=function(e){i(h).removeClass(u),i(p).removeClass(d),i(p+':has(a[href="'+e.replace(/^\//,"").split("?")[0]+'"])').addClass(d),i(g+' a[href="'+e.replace(/^\//,"").split("?")[0]+'"]').addClass(u),this.loadPage(e)},e.loadBlank=function(e){window.open(e)},e.loadTop=function(e){window.location=e},e._getConfig=function(e){return e=Object.assign({},b,e)},e._addEventListeners=function(){var t=this;i(document).on(f,h+'[href!="#"]',function(e){e.preventDefault(),e.stopPropagation(),"_top"===e.currentTarget.target?t.loadTop(e.currentTarget.href):"_blank"===e.currentTarget.target?t.loadBlank(e.currentTarget.href):t.setUpUrl(e.currentTarget.getAttribute("href"))})},n._jQueryInterface=function(t){return this.each(function(){var e=i(this).data(s);e||(e=new n(this,"object"==typeof t&&t),i(this).data(s,e))})},a(n,null,[{key:"VERSION",get:function(){return"2.0.9"}},{key:"Default",get:function(){return b}}]),n}(),i.fn[n]=v._jQueryInterface,i.fn[n].Constructor=v,i.fn[n].noConflict=function(){return i.fn[n]=c,v._jQueryInterface},v),W=function(e,t){var n=t.indexOf(e),r=t.slice(0,n+1);-1!==r.map(function(e){return document.body.classList.contains(e)}).indexOf(!0)?r.map(function(e){return document.body.classList.remove(e)}):document.body.classList.add(e)},Z=(w="aside-menu",I="coreui.aside-menu",C=(y=t).fn[w],_={CLICK:"click",LOAD_DATA_API:"load.coreui.aside-menu.data-api",TOGGLE:"toggle"},T=".aside-menu",S=".aside-menu-toggler",L=["aside-menu-show","aside-menu-sm-show","aside-menu-md-show","aside-menu-lg-show","aside-menu-xl-show"],E=function(){function n(e){this._element=e,this._addEventListeners()}return n.prototype._addEventListeners=function(){y(S).on(_.CLICK,function(e){e.preventDefault(),e.stopPropagation();var t=e.currentTarget.dataset.toggle;W(t,L)})},n._jQueryInterface=function(){return this.each(function(){var e=y(this),t=e.data(I);t||(t=new n(this),e.data(I,t))})},a(n,null,[{key:"VERSION",get:function(){return"2.0.9"}}]),n}(),y(window).on(_.LOAD_DATA_API,function(){var e=y(T);E._jQueryInterface.call(e)}),y.fn[w]=E._jQueryInterface,y.fn[w].Constructor=E,y.fn[w].noConflict=function(){return y.fn[w]=C,E._jQueryInterface},E),ee=(A="sidebar",P="coreui.sidebar",x=(j=t).fn[A],D=400,O="active",k="brand-minimized",Q="open",U="sidebar-minimized",q={CLICK:"click",DESTROY:"destroy",INIT:"init",LOAD_DATA_API:"load.coreui.sidebar.data-api",TOGGLE:"toggle",UPDATE:"update"},N="body",G=".brand-minimizer",K=".nav-dropdown-toggle",R=".nav-dropdown-items",H=".nav-item",M=".nav-link",V=".sidebar-nav",z=".sidebar-nav > .nav",B=".sidebar",J=".sidebar-minimizer",Y=".sidebar-toggler",$=["sidebar-show","sidebar-sm-show","sidebar-md-show","sidebar-lg-show","sidebar-xl-show"],X=function(){function n(e){this._element=e,this.ps=null,this.perfectScrollbar(q.INIT),this.setActiveLink(),this._addEventListeners()}var e=n.prototype;return e.perfectScrollbar=function(e){var t=this;"undefined"!=typeof r&&(e!==q.INIT||document.body.classList.contains(U)||(this.ps=this.makeScrollbar()),e===q.DESTROY&&this.destroyScrollbar(),e===q.TOGGLE&&(document.body.classList.contains(U)?this.destroyScrollbar():this.ps=this.makeScrollbar()),e!==q.UPDATE||document.body.classList.contains(U)||setTimeout(function(){t.destroyScrollbar(),t.ps=t.makeScrollbar()},D))},e.makeScrollbar=function(e){return void 0===e&&(e=V),new r(document.querySelector(e),{suppressScrollX:!0})},e.destroyScrollbar=function(){this.ps&&(this.ps.destroy(),this.ps=null)},e.setActiveLink=function(){j(z).find(M).each(function(e,t){var n=t,r=String(window.location).split("?")[0];"#"===r.substr(r.length-1)&&(r=r.slice(0,-1)),j(j(n))[0].href===r&&j(n).addClass(O).parents(R).add(n).each(function(e,t){j(n=t).parent().addClass(Q)})})},e._addEventListeners=function(){var n=this;j(G).on(q.CLICK,function(e){e.preventDefault(),e.stopPropagation(),j(N).toggleClass(k)}),j(K).on(q.CLICK,function(e){e.preventDefault(),e.stopPropagation();var t=e.target;j(t).parent().toggleClass(Q),n.perfectScrollbar(q.UPDATE)}),j(J).on(q.CLICK,function(e){e.preventDefault(),e.stopPropagation(),j(N).toggleClass(U),n.perfectScrollbar(q.TOGGLE)}),j(Y).on(q.CLICK,function(e){e.preventDefault(),e.stopPropagation();var t=e.currentTarget.dataset.toggle;W(t,$)}),j(z+" > "+H+" "+M+":not("+K+")").on(q.CLICK,function(){document.body.classList.remove("sidebar-show")})},n._jQueryInterface=function(){return this.each(function(){var e=j(this),t=e.data(P);t||(t=new n(this),e.data(P,t))})},a(n,null,[{key:"VERSION",get:function(){return"2.0.9"}}]),n}(),j(window).on(q.LOAD_DATA_API,function(){var e=j(B);X._jQueryInterface.call(e)}),j.fn[A]=X._jQueryInterface,j.fn[A].Constructor=X,j.fn[A].noConflict=function(){return j.fn[A]=x,X._jQueryInterface},X);!function(e){if("undefined"==typeof e)throw new TypeError("CoreUI's JavaScript requires jQuery. jQuery must be included before CoreUI's JavaScript.");var t=e.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||4<=t[0])throw new Error("CoreUI's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(t),window.getStyle=function(e,t){var n;void 0===t&&(t=document.body),n=e.match(/^--.*/i)&&Boolean(document.documentMode)&&10<=document.documentMode?function(){for(var r={},e=document.styleSheets,t="",n=e.length-1;-1<n;n--){for(var o=e[n].cssRules,a=o.length-1;-1<a;a--)if(".ie-custom-properties"===o[a].selectorText){t=o[a].cssText;break}if(t)break}return(t=t.substring(t.lastIndexOf("{")+1,t.lastIndexOf("}"))).split(";").forEach(function(e){if(e){var t=e.split(": ")[0],n=e.split(": ")[1];t&&n&&(r["--"+t.trim()]=n.trim())}}),r}()[e]:window.getComputedStyle(t,null).getPropertyValue(e).replace(/^\s/,"");return n},window.hexToRgb=function(e){if("undefined"==typeof e)throw new Error("Hex color is not defined");var t,n,r;if(!e.match(/^#(?:[0-9a-f]{3}){1,2}$/i))throw new Error(e+" is not a valid hex color");return r=7===e.length?(t=parseInt(e.substring(1,3),16),n=parseInt(e.substring(3,5),16),parseInt(e.substring(5,7),16)):(t=parseInt(e.substring(1,2),16),n=parseInt(e.substring(2,3),16),parseInt(e.substring(3,5),16)),"rgba("+t+", "+n+", "+r+")"},window.hexToRgba=function(e,t){if(void 0===t&&(t=100),"undefined"==typeof e)throw new Error("Hex color is not defined");var n,r,o;if(!e.match(/^#(?:[0-9a-f]{3}){1,2}$/i))throw new Error(e+" is not a valid hex color");return o=7===e.length?(n=parseInt(e.substring(1,3),16),r=parseInt(e.substring(3,5),16),parseInt(e.substring(5,7),16)):(n=parseInt(e.substring(1,2),16),r=parseInt(e.substring(2,3),16),parseInt(e.substring(3,5),16)),"rgba("+n+", "+r+", "+o+", "+t/100+")"},window.rgbToHex=function(e){if("undefined"==typeof e)throw new Error("Hex color is not defined");var t=e.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i);if(!t)throw new Error(e+" is not a valid rgb color");var n="0"+parseInt(t[1],10).toString(16),r="0"+parseInt(t[2],10).toString(16),o="0"+parseInt(t[3],10).toString(16);return"#"+n.slice(-2)+r.slice(-2)+o.slice(-2)},e.AjaxLoad=F,e.AsideMenu=Z,e.Sidebar=ee,Object.defineProperty(e,"__esModule",{value:!0})});
//# sourceMappingURL=coreui.min.js.map

@@ -7,3 +7,3 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): ajax-load.js
* CoreUI (v2.0.9): ajax-load.js
* Licensed under MIT (https://coreui.io/license)

@@ -19,3 +19,3 @@ * --------------------------------------------------------------------------

var NAME = 'ajaxLoad';
var VERSION = '2.0.8';
var VERSION = '2.0.9';
var DATA_KEY = 'coreui.ajaxLoad';

@@ -22,0 +22,0 @@ var JQUERY_NO_CONFLICT = $.fn[NAME];

@@ -7,3 +7,3 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): aside-menu.js
* CoreUI (v2.0.9): aside-menu.js
* Licensed under MIT (https://coreui.io/license)

@@ -19,3 +19,3 @@ * --------------------------------------------------------------------------

var NAME = 'aside-menu';
var VERSION = '2.0.8';
var VERSION = '2.0.9';
var DATA_KEY = 'coreui.aside-menu';

@@ -22,0 +22,0 @@ var EVENT_KEY = "." + DATA_KEY;

/**
* --------------------------------------------------------------------------
* CoreUI (v2.0.8): index.js
* CoreUI (v2.0.9): index.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

@@ -7,3 +7,3 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): sidebar.js
* CoreUI (v2.0.9): sidebar.js
* Licensed under MIT (https://coreui.io/license)

@@ -19,3 +19,3 @@ * --------------------------------------------------------------------------

var NAME = 'sidebar';
var VERSION = '2.0.8';
var VERSION = '2.0.9';
var DATA_KEY = 'coreui.sidebar';

@@ -70,2 +70,3 @@ var EVENT_KEY = "." + DATA_KEY;

this._element = element;
this.ps = null;
this.perfectScrollbar(Event.INIT);

@@ -82,17 +83,11 @@ this.setActiveLink();

_proto.perfectScrollbar = function perfectScrollbar(event) {
var _this = this;
if (typeof PerfectScrollbar !== 'undefined') {
var ps;
if (event === Event.INIT && !document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
this.ps = this.makeScrollbar();
}
if (event === Event.DESTROY) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
ps.destroy();
ps = null;
this.destroyScrollbar();
}

@@ -102,20 +97,14 @@

if (document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
ps.destroy();
ps = null;
this.destroyScrollbar();
} else {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
this.ps = this.makeScrollbar();
}
}
if (event === Event.UPDATE) {
if (event === Event.UPDATE && !document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
// ToDo: Add smooth transition
setTimeout(function () {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
});
_this.destroyScrollbar();
_this.ps = _this.makeScrollbar();
}, Default.transition);

@@ -126,2 +115,19 @@ }

_proto.makeScrollbar = function makeScrollbar(container) {
if (container === void 0) {
container = Selector.NAVIGATION_CONTAINER;
}
return new PerfectScrollbar(document.querySelector(container), {
suppressScrollX: true
});
};
_proto.destroyScrollbar = function destroyScrollbar() {
if (this.ps) {
this.ps.destroy();
this.ps = null;
}
};
_proto.setActiveLink = function setActiveLink() {

@@ -147,3 +153,3 @@ $(Selector.NAVIGATION).find(Selector.NAV_LINK).each(function (key, value) {

_proto._addEventListeners = function _addEventListeners() {
var _this = this;
var _this2 = this;

@@ -161,3 +167,3 @@ $(Selector.BRAND_MINIMIZER).on(Event.CLICK, function (event) {

_this.perfectScrollbar(Event.UPDATE);
_this2.perfectScrollbar(Event.UPDATE);
});

@@ -169,3 +175,3 @@ $(Selector.SIDEBAR_MINIMIZER).on(Event.CLICK, function (event) {

_this.perfectScrollbar(Event.TOGGLE);
_this2.perfectScrollbar(Event.TOGGLE);
});

@@ -172,0 +178,0 @@ $(Selector.SIDEBAR_TOGGLER).on(Event.CLICK, function (event) {

/**
* --------------------------------------------------------------------------
* CoreUI (v2.0.8): toggle-classes.js
* CoreUI (v2.0.9): toggle-classes.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): get-style.js
* CoreUI Utilities (v2.0.9): get-style.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): hex-to-rgb.js
* CoreUI Utilities (v2.0.9): hex-to-rgb.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): hex-to-rgba.js
* CoreUI Utilities (v2.0.9): hex-to-rgba.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

/**
* --------------------------------------------------------------------------
* CoreUI (v2.0.8): rgb-to-hex.js
* CoreUI (v2.0.9): rgb-to-hex.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

@@ -5,3 +5,3 @@ import $ from 'jquery'

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): ajax-load.js
* CoreUI (v2.0.9): ajax-load.js
* Licensed under MIT (https://coreui.io/license)

@@ -20,3 +20,3 @@ * --------------------------------------------------------------------------

const NAME = 'ajaxLoad'
const VERSION = '2.0.8'
const VERSION = '2.0.9'
const DATA_KEY = 'coreui.ajaxLoad'

@@ -23,0 +23,0 @@ const JQUERY_NO_CONFLICT = $.fn[NAME]

@@ -6,3 +6,3 @@ import $ from 'jquery'

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): aside-menu.js
* CoreUI (v2.0.9): aside-menu.js
* Licensed under MIT (https://coreui.io/license)

@@ -20,3 +20,3 @@ * --------------------------------------------------------------------------

const NAME = 'aside-menu'
const VERSION = '2.0.8'
const VERSION = '2.0.9'
const DATA_KEY = 'coreui.aside-menu'

@@ -23,0 +23,0 @@ const EVENT_KEY = `.${DATA_KEY}`

@@ -8,3 +8,3 @@ import $ from 'jquery'

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): index.js
* CoreUI (v2.0.9): index.js
* Licensed under MIT (https://coreui.io/license)

@@ -11,0 +11,0 @@ * --------------------------------------------------------------------------

@@ -7,3 +7,3 @@ import $ from 'jquery'

* --------------------------------------------------------------------------
* CoreUI (v2.0.8): sidebar.js
* CoreUI (v2.0.9): sidebar.js
* Licensed under MIT (https://coreui.io/license)

@@ -21,3 +21,3 @@ * --------------------------------------------------------------------------

const NAME = 'sidebar'
const VERSION = '2.0.8'
const VERSION = '2.0.9'
const DATA_KEY = 'coreui.sidebar'

@@ -82,2 +82,3 @@ const EVENT_KEY = `.${DATA_KEY}`

this._element = element
this.ps = null
this.perfectScrollbar(Event.INIT)

@@ -98,16 +99,8 @@ this.setActiveLink()

if (typeof PerfectScrollbar !== 'undefined') {
let ps
if (event === Event.INIT && !document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
})
this.ps = this.makeScrollbar()
}
if (event === Event.DESTROY) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
})
ps.destroy()
ps = null
this.destroyScrollbar()
}

@@ -117,20 +110,13 @@

if (document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
})
ps.destroy()
ps = null
this.destroyScrollbar()
} else {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
})
this.ps = this.makeScrollbar()
}
}
if (event === Event.UPDATE) {
if (event === Event.UPDATE && !document.body.classList.contains(ClassName.SIDEBAR_MINIMIZED)) {
// ToDo: Add smooth transition
setTimeout(() => {
ps = new PerfectScrollbar(document.querySelector(Selector.NAVIGATION_CONTAINER), {
suppressScrollX: true
})
this.destroyScrollbar()
this.ps = this.makeScrollbar()
}, Default.transition)

@@ -141,2 +127,15 @@ }

makeScrollbar(container = Selector.NAVIGATION_CONTAINER) {
return new PerfectScrollbar(document.querySelector(container), {
suppressScrollX: true
})
}
destroyScrollbar() {
if (this.ps) {
this.ps.destroy()
this.ps = null
}
}
setActiveLink() {

@@ -143,0 +142,0 @@ $(Selector.NAVIGATION).find(Selector.NAV_LINK).each((key, value) => {

/**
* --------------------------------------------------------------------------
* CoreUI (v2.0.8): toggle-classes.js
* CoreUI (v2.0.9): toggle-classes.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): get-style.js
* CoreUI Utilities (v2.0.9): get-style.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): hex-to-rgb.js
* CoreUI Utilities (v2.0.9): hex-to-rgb.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v2.0.8): hex-to-rgba.js
* CoreUI Utilities (v2.0.9): hex-to-rgba.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

@@ -0,0 +0,0 @@ import getStyle from './get-style'

/**
* --------------------------------------------------------------------------
* CoreUI (v2.0.8): rgb-to-hex.js
* CoreUI (v2.0.9): rgb-to-hex.js
* Licensed under MIT (https://coreui.io/license)

@@ -5,0 +5,0 @@ * --------------------------------------------------------------------------

{
"name": "@coreui/coreui-pro",
"version": "2.0.8",
"version": "2.0.9",
"description": "UI Kit built on top of Bootstrap 4",

@@ -77,8 +77,8 @@ "keywords": [

"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^9.1.5",

@@ -92,3 +92,3 @@ "babel-eslint": "^9.0.0",

"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"eslint": "^5.6.0",
"eslint-plugin-compat": "^2.5.1",

@@ -99,3 +99,3 @@ "node-sass": "^4.9.3",

"postcss-cli": "^6.0.0",
"rollup": "^0.65.0",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",

@@ -110,3 +110,3 @@ "rollup-plugin-node-resolve": "^3.4.0",

"stylelint-order": "^1.0.0",
"stylelint-scss": "^3.3.0",
"stylelint-scss": "^3.3.1",
"uglify-js": "^3.4.9"

@@ -113,0 +113,0 @@ },

@@ -55,7 +55,3 @@ # CoreUI - WebApp UI Kit built on top of Bootstrap 4 [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&logo=twitter)](https://twitter.com/intent/tweet?text=CoreUI%20-%20Free%20Bootstrap%204%20Admin%20Template%20&url=https://coreui.io&hashtags=bootstrap,admin,template,dashboard,panel,free,angular,react,vue)

``` bash
<<<<<<< HEAD
$ yarn add @coreui/coreui@2.0.8
=======
$ yarn add @coreui/coreui@2.0.8
>>>>>>> 44dcda9b743365ac454c57725263ca6adbc95749
$ yarn add @coreui/coreui@2.0.9
```

@@ -66,7 +62,3 @@

``` bash
<<<<<<< HEAD
$ composer require coreui/coreui:2.0.8
=======
$ composer require coreui/coreui:2.0.8
>>>>>>> 44dcda9b743365ac454c57725263ca6adbc95749
$ composer require coreui/coreui:2.0.9
```

@@ -73,0 +65,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc