| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/public_html/rdmts/assets/node_modules/coreui/coreui/dist/js/ |
Upload File : |
/*!
* CoreUI v3.0.0-beta.4 (https://coreui.io)
* Copyright 2020 Ćukasz Holeczek
* Licensed under MIT (https://coreui.io)
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = global || self, factory(global.utilities = {}));
}(this, (function (exports) { 'use strict';
/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v3.0.0-beta.4): classes.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
var sidebarCssClasses = ['sidebar-show', 'sidebar-sm-show', 'sidebar-md-show', 'sidebar-lg-show', 'sidebar-xl-show'];
var asideMenuCssClasses = ['aside-menu-show', 'aside-menu-sm-show', 'aside-menu-md-show', 'aside-menu-lg-show', 'aside-menu-xl-show'];
var validBreakpoints = ['sm', 'md', 'lg', 'xl'];
function checkBreakpoint(breakpoint, list) {
return list.indexOf(breakpoint) > -1;
}
/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v3.0.0-beta.4): deep-objects-merge.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
var deepObjectsMerge = function deepObjectsMerge(target, source) {
// Iterate through `source` properties and if an `Object` set property to merge of `target` and `source` properties
for (var _i = 0, _Object$keys = Object.keys(source); _i < _Object$keys.length; _i++) {
var key = _Object$keys[_i];
if (source[key] instanceof Object) {
Object.assign(source[key], deepObjectsMerge(target[key], source[key]));
}
} // Join `target` and modified `source`
Object.assign(target || {}, source);
return target;
};
/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v3.0.0-beta.4): get-css-custom-properties.js
* Licensed under MIT (https://coreui.io/license)
* @returns {string} css custom property name
* --------------------------------------------------------------------------
*/
var getCssCustomProperties = function getCssCustomProperties() {
var cssCustomProperties = {};
var sheets = document.styleSheets;
var cssText = '';
for (var i = sheets.length - 1; i > -1; i--) {
var rules = sheets[i].cssRules;
for (var j = rules.length - 1; j > -1; j--) {
if (rules[j].selectorText === '.ie-custom-properties') {
// eslint-disable-next-line prefer-destructuring
cssText = rules[j].cssText;
break;
}
}
if (cssText) {
break;
}
} // eslint-disable-next-line unicorn/prefer-string-slice
cssText = cssText.substring(cssText.lastIndexOf('{') + 1, cssText.lastIndexOf('}'));
cssText.split(';').forEach(function (property) {
if (property) {
var name = property.split(': ')[0];
var value = property.split(': ')[1];
if (name && value) {
cssCustomProperties["--" + name.trim()] = value.trim();
}
}
});
return cssCustomProperties;
};
/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v3.0.0-beta.4): get-style.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
var minIEVersion = 10;
var isIE1x = function isIE1x() {
return Boolean(document.documentMode) && document.documentMode >= minIEVersion;
};
var isCustomProperty = function isCustomProperty(property) {
return property.match(/^--.*/i);
};
var getStyle = function getStyle(property, element) {
if (element === void 0) {
element = document.body;
}
var style;
if (isCustomProperty(property) && isIE1x()) {
var cssCustomProperties = getCssCustomProperties();
style = cssCustomProperties[property];
} else {
style = window.getComputedStyle(element, null).getPropertyValue(property).replace(/^\s/, '');
}
return style;
};
/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v3.0.0-beta.4): get-color.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
var getColor = function getColor(rawProperty, element) {
if (element === void 0) {
element = document.body;
}
var property = "--" + rawProperty;
var style = getStyle(property, element);
return style ? style : rawProperty;
};
/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v3.0.0-beta.4): hex-to-rgb.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
/* eslint-disable no-magic-numbers */
var hexToRgb = function hexToRgb(color) {
if (typeof color === 'undefined') {
throw new TypeError('Hex color is not defined');
}
var hex = color.match(/^#(?:[0-9a-f]{3}){1,2}$/i);
if (!hex) {
throw new Error(color + " is not a valid hex color");
}
var r;
var g;
var b;
if (color.length === 7) {
r = parseInt(color.slice(1, 3), 16);
g = parseInt(color.slice(3, 5), 16);
b = parseInt(color.slice(5, 7), 16);
} else {
r = parseInt(color.slice(1, 2), 16);
g = parseInt(color.slice(2, 3), 16);
b = parseInt(color.slice(3, 5), 16);
}
return "rgba(" + r + ", " + g + ", " + b + ")";
};
/**
* --------------------------------------------------------------------------
* CoreUI Utilities (v3.0.0-beta.4): hex-to-rgba.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
/* eslint-disable no-magic-numbers */
var hexToRgba = function hexToRgba(color, opacity) {
if (opacity === void 0) {
opacity = 100;
}
if (typeof color === 'undefined') {
throw new TypeError('Hex color is not defined');
}
var hex = color.match(/^#(?:[0-9a-f]{3}){1,2}$/i);
if (!hex) {
throw new Error(color + " is not a valid hex color");
}
var r;
var g;
var b;
if (color.length === 7) {
r = parseInt(color.slice(1, 3), 16);
g = parseInt(color.slice(3, 5), 16);
b = parseInt(color.slice(5, 7), 16);
} else {
r = parseInt(color.slice(1, 2), 16);
g = parseInt(color.slice(2, 3), 16);
b = parseInt(color.slice(3, 5), 16);
}
return "rgba(" + r + ", " + g + ", " + b + ", " + opacity / 100 + ")";
};
/**
* --------------------------------------------------------------------------
* CoreUI (v3.0.0-beta.4): rgb-to-hex.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
/* eslint-disable no-magic-numbers */
var rgbToHex = function rgbToHex(color) {
if (typeof color === 'undefined') {
throw new TypeError('Hex color is not defined');
}
if (color === 'transparent') {
return '#00000000';
}
var rgb = color.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i);
if (!rgb) {
throw new Error(color + " is not a valid rgb color");
}
var r = "0" + parseInt(rgb[1], 10).toString(16);
var g = "0" + parseInt(rgb[2], 10).toString(16);
var b = "0" + parseInt(rgb[3], 10).toString(16);
return "#" + r.slice(-2) + g.slice(-2) + b.slice(-2);
};
exports.asideMenuCssClasses = asideMenuCssClasses;
exports.checkBreakpoint = checkBreakpoint;
exports.deepObjectsMerge = deepObjectsMerge;
exports.getColor = getColor;
exports.getStyle = getStyle;
exports.hexToRgb = hexToRgb;
exports.hexToRgba = hexToRgba;
exports.rgbToHex = rgbToHex;
exports.sidebarCssClasses = sidebarCssClasses;
exports.validBreakpoints = validBreakpoints;
Object.defineProperty(exports, '__esModule', { value: true });
})));
//# sourceMappingURL=coreui-utilities.js.map