Nuget Update Bootstrap

This commit is contained in:
Samuele E. Locatelli
2019-12-12 16:10:31 +01:00
parent 995c7c01df
commit 46eb99acd6
113 changed files with 5507 additions and 1255 deletions
@@ -0,0 +1,14 @@
/**
* Given element offsets, generate an output similar to getBoundingClientRect
* @method
* @memberof Popper.Utils
* @argument {Object} offsets
* @returns {Object} ClientRect like output
*/
export default function getClientRect(offsets) {
return {
...offsets,
right: offsets.left + offsets.width,
bottom: offsets.top + offsets.height,
};
}