Skip to content

Commit

Permalink
Libs update
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislawfortonski committed Apr 10, 2021
1 parent f432304 commit aaec9fc
Show file tree
Hide file tree
Showing 12 changed files with 687 additions and 553 deletions.
507 changes: 242 additions & 265 deletions composer.lock

Large diffs are not rendered by default.

650 changes: 405 additions & 245 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.8",
"@babel/preset-env": "^7.13.15",
"@coreui/coreui": "^3.4.0",
"@fortawesome/fontawesome-free": "^5.15.2",
"@popperjs/core": "^2.8.6",
"@fortawesome/fontawesome-free": "^5.15.3",
"@popperjs/core": "^2.9.2",
"axios": "^0.19",
"babel-eslint": "^10.1.0",
"bs-custom-file-input": "^1.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint": "^7.24.0",
"jest": "^26.6.3",
"laravel-mix": "^5.0.1",
"lodash": "^4.17.21",
Expand All @@ -31,6 +31,6 @@
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"tinymce": "^5.7.0"
"tinymce": "^5.7.1"
}
}
6 changes: 3 additions & 3 deletions public/css/fontawesome.css

Large diffs are not rendered by default.

Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions public/js/admin.js

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions public/js/admin.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/*!
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md.
*/

/*!
* bsCustomFileInput v1.3.4 (https://github.com/Johann-S/bs-custom-file-input)
* Copyright 2018 - 2020 Johann-S <[email protected]>
Expand Down
36 changes: 16 additions & 20 deletions public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7068,11 +7068,11 @@ function getLayoutRect(element) {
var width = element.offsetWidth;
var height = element.offsetHeight;

if (Math.abs(clientRect.width - width) <= 0.5) {
if (Math.abs(clientRect.width - width) <= 1) {
width = clientRect.width;
}

if (Math.abs(clientRect.height - height) <= 0.5) {
if (Math.abs(clientRect.height - height) <= 1) {
height = clientRect.height;
}

Expand Down Expand Up @@ -7165,15 +7165,26 @@ function getTrueOffsetParent(element) {


function getContainingBlock(element) {
var isFirefox = navigator.userAgent.toLowerCase().includes('firefox');
var isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') !== -1;
var isIE = navigator.userAgent.indexOf('Trident') !== -1;

if (isIE && Object(_instanceOf_js__WEBPACK_IMPORTED_MODULE_3__["isHTMLElement"])(element)) {
// In IE 9, 10 and 11 fixed elements containing block is always established by the viewport
var elementCss = Object(_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_2__["default"])(element);

if (elementCss.position === 'fixed') {
return null;
}
}

var currentNode = Object(_getParentNode_js__WEBPACK_IMPORTED_MODULE_5__["default"])(element);

while (Object(_instanceOf_js__WEBPACK_IMPORTED_MODULE_3__["isHTMLElement"])(currentNode) && ['html', 'body'].indexOf(Object(_getNodeName_js__WEBPACK_IMPORTED_MODULE_1__["default"])(currentNode)) < 0) {
var css = Object(_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_2__["default"])(currentNode); // This is non-exhaustive but covers the most common CSS properties that
// create a containing block.
// https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block

if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].includes(css.willChange) || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') {
if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') {
return currentNode;
} else {
currentNode = currentNode.parentNode;
Expand Down Expand Up @@ -7336,9 +7347,6 @@ function getViewportRect(element) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getWindow; });
/*:: import type { Window } from '../types'; */

/*:: declare function getWindow(node: Node | Window): Window; */
function getWindow(node) {
if (node == null) {
return window;
Expand Down Expand Up @@ -7421,24 +7429,16 @@ __webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isShadowRoot", function() { return isShadowRoot; });
/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");

/*:: declare function isElement(node: mixed): boolean %checks(node instanceof
Element); */

function isElement(node) {
var OwnElement = Object(_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node).Element;
return node instanceof OwnElement || node instanceof Element;
}
/*:: declare function isHTMLElement(node: mixed): boolean %checks(node instanceof
HTMLElement); */


function isHTMLElement(node) {
var OwnElement = Object(_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node).HTMLElement;
return node instanceof OwnElement || node instanceof HTMLElement;
}
/*:: declare function isShadowRoot(node: mixed): boolean %checks(node instanceof
ShadowRoot); */


function isShadowRoot(node) {
// IE 11 has no ShadowRoot
Expand Down Expand Up @@ -8011,8 +8011,8 @@ function mapToStyles(_ref2) {
}
} // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it

/*:: offsetParent = (offsetParent: Element); */

offsetParent = offsetParent;

if (placement === _enums_js__WEBPACK_IMPORTED_MODULE_0__["top"]) {
sideY = _enums_js__WEBPACK_IMPORTED_MODULE_0__["bottom"]; // $FlowFixMe[prop-missing]
Expand Down Expand Up @@ -8828,10 +8828,6 @@ __webpack_require__.r(__webpack_exports__);




/*:: type OverflowsMap = { [ComputedPlacement]: number }; */

/*;; type OverflowsMap = { [key in ComputedPlacement]: number }; */
function computeAutoPlacement(state, options) {
if (options === void 0) {
options = {};
Expand Down

0 comments on commit aaec9fc

Please sign in to comment.