parent
33c84d89b8
commit
b7f8a63158
|
@ -255,13 +255,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function _typeof$1(obj) {
|
function _typeof$1(obj) {
|
||||||
if (typeof Symbol === "function" && _typeof(Symbol.iterator) === "symbol") {
|
"@babel/helpers - typeof";
|
||||||
_typeof$1 = function _typeof$1(obj) {
|
|
||||||
return _typeof(obj);
|
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
||||||
|
_typeof$1 = function _typeof(obj) {
|
||||||
|
return typeof obj;
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
_typeof$1 = function _typeof$1(obj) {
|
_typeof$1 = function _typeof(obj) {
|
||||||
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : _typeof(obj);
|
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -610,7 +612,7 @@
|
||||||
'value', 'willvalidate']); // Todo: Add more to this as useful for templating
|
'value', 'willvalidate']); // Todo: Add more to this as useful for templating
|
||||||
// to avoid setting through nullish value
|
// to avoid setting through nullish value
|
||||||
|
|
||||||
var NULLABLES = ['dir', // HTMLElement
|
var NULLABLES = ['autocomplete', 'dir', // HTMLElement
|
||||||
'integrity', // script, link
|
'integrity', // script, link
|
||||||
'lang', // HTMLElement
|
'lang', // HTMLElement
|
||||||
'max', 'min', 'title' // HTMLElement
|
'max', 'min', 'title' // HTMLElement
|
||||||
|
|
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
|
@ -1,4 +1,6 @@
|
||||||
function _typeof(obj) {
|
function _typeof(obj) {
|
||||||
|
"@babel/helpers - typeof";
|
||||||
|
|
||||||
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
||||||
_typeof = function (obj) {
|
_typeof = function (obj) {
|
||||||
return typeof obj;
|
return typeof obj;
|
||||||
|
@ -351,7 +353,7 @@ var ATTR_DOM = BOOL_ATTS.concat(['accessKey', // HTMLElement
|
||||||
'value', 'willvalidate']); // Todo: Add more to this as useful for templating
|
'value', 'willvalidate']); // Todo: Add more to this as useful for templating
|
||||||
// to avoid setting through nullish value
|
// to avoid setting through nullish value
|
||||||
|
|
||||||
var NULLABLES = ['dir', // HTMLElement
|
var NULLABLES = ['autocomplete', 'dir', // HTMLElement
|
||||||
'integrity', // script, link
|
'integrity', // script, link
|
||||||
'lang', // HTMLElement
|
'lang', // HTMLElement
|
||||||
'max', 'min', 'title' // HTMLElement
|
'max', 'min', 'title' // HTMLElement
|
||||||
|
|
|
@ -20,14 +20,14 @@
|
||||||
import './svgpathseg.js';
|
import './svgpathseg.js';
|
||||||
import jQueryPluginSVG from './jQuery.attr.js'; // Needed for SVG attribute setting and array form with `attr`
|
import jQueryPluginSVG from './jQuery.attr.js'; // Needed for SVG attribute setting and array form with `attr`
|
||||||
import jQueryPluginDBox from './dbox.js';
|
import jQueryPluginDBox from './dbox.js';
|
||||||
import * as draw from './draw.js'; // eslint-disable-line import/no-duplicates
|
import * as draw from './draw.js';
|
||||||
// eslint-disable-next-line no-duplicate-imports
|
// eslint-disable-next-line no-duplicate-imports
|
||||||
import {
|
import {
|
||||||
identifyLayers, createLayer, cloneLayer, deleteCurrentLayer,
|
identifyLayers, createLayer, cloneLayer, deleteCurrentLayer,
|
||||||
setCurrentLayer, renameCurrentLayer, setCurrentLayerPosition,
|
setCurrentLayer, renameCurrentLayer, setCurrentLayerPosition,
|
||||||
setLayerVisibility, moveSelectedToLayer, mergeLayer, mergeAllLayers,
|
setLayerVisibility, moveSelectedToLayer, mergeLayer, mergeAllLayers,
|
||||||
leaveContext, setContext
|
leaveContext, setContext
|
||||||
} from './draw.js'; // eslint-disable-line import/no-duplicates
|
} from './draw.js';
|
||||||
import * as pathModule from './path.js';
|
import * as pathModule from './path.js';
|
||||||
import {sanitizeSvg} from './sanitize.js';
|
import {sanitizeSvg} from './sanitize.js';
|
||||||
import {getReverseNS, NS} from './namespaces.js';
|
import {getReverseNS, NS} from './namespaces.js';
|
||||||
|
|
|
@ -5544,9 +5544,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"eslint-plugin-cypress": {
|
"eslint-plugin-cypress": {
|
||||||
"version": "2.8.1",
|
"version": "2.9.0",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.9.0.tgz",
|
||||||
"integrity": "sha512-jDpcP+MmjmqQO/x3bwIXgp4cl7Q66RYS5/IsuOQP4Qo2sEqE3DI8tTxBQ1EhnV5qEDd2Z2TYHR+5vYI6oCN4uw==",
|
"integrity": "sha512-3x6EQYDB30VHyqFV6leBRf9Zo51FsPWXG+aLtpUSlRtcLGcrbmnfno02E318YYSmGbCJH6K5i+MLCFHBpcyreg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"globals": "^11.12.0"
|
"globals": "^11.12.0"
|
||||||
|
@ -5596,9 +5596,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"eslint-plugin-import": {
|
"eslint-plugin-import": {
|
||||||
"version": "2.20.0",
|
"version": "2.20.1",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.20.0.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz",
|
||||||
"integrity": "sha512-NK42oA0mUc8Ngn4kONOPsPB1XhbUvNHqF+g307dPV28aknPoiNnKLFd9em4nkswwepdF5ouieqv5Th/63U7YJQ==",
|
"integrity": "sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"array-includes": "^3.0.3",
|
"array-includes": "^3.0.3",
|
||||||
|
@ -8680,9 +8680,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"jamilih": {
|
"jamilih": {
|
||||||
"version": "0.50.0",
|
"version": "0.51.0",
|
||||||
"resolved": "https://registry.npmjs.org/jamilih/-/jamilih-0.50.0.tgz",
|
"resolved": "https://registry.npmjs.org/jamilih/-/jamilih-0.51.0.tgz",
|
||||||
"integrity": "sha512-xAeqKWBF+pPR1ZaROM4EMCMufuTWaruPcjLN5lytLrWIwXvOoHzKn+3oQjvvrDHFcnaS8MZ19EEu6goeGGHy2w==",
|
"integrity": "sha512-TJ+h+w0wi8Fp9pVmz/fwXSyEZS9T38ycSEvPsM9+r6jHi4nb6RqrNj0syBPl4feW+AiL7Dq69Dxq92Od8eI6Iw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"jest-worker": {
|
"jest-worker": {
|
||||||
|
|
|
@ -144,10 +144,10 @@
|
||||||
"eslint-config-standard": "^14.1.0",
|
"eslint-config-standard": "^14.1.0",
|
||||||
"eslint-plugin-array-func": "^3.1.3",
|
"eslint-plugin-array-func": "^3.1.3",
|
||||||
"eslint-plugin-compat": "^3.5.1",
|
"eslint-plugin-compat": "^3.5.1",
|
||||||
"eslint-plugin-cypress": "^2.8.1",
|
"eslint-plugin-cypress": "^2.9.0",
|
||||||
"eslint-plugin-eslint-comments": "^3.1.2",
|
"eslint-plugin-eslint-comments": "^3.1.2",
|
||||||
"eslint-plugin-html": "^6.0.0",
|
"eslint-plugin-html": "^6.0.0",
|
||||||
"eslint-plugin-import": "^2.20.0",
|
"eslint-plugin-import": "^2.20.1",
|
||||||
"eslint-plugin-jsdoc": "^21.0.0",
|
"eslint-plugin-jsdoc": "^21.0.0",
|
||||||
"eslint-plugin-markdown": "^1.0.1",
|
"eslint-plugin-markdown": "^1.0.1",
|
||||||
"eslint-plugin-no-unsanitized": "^3.0.2",
|
"eslint-plugin-no-unsanitized": "^3.0.2",
|
||||||
|
@ -160,7 +160,7 @@
|
||||||
"frs-replace": "^2.0.1",
|
"frs-replace": "^2.0.1",
|
||||||
"gh-badges": "^2.2.1",
|
"gh-badges": "^2.2.1",
|
||||||
"imageoptim-cli": "^3.0.2",
|
"imageoptim-cli": "^3.0.2",
|
||||||
"jamilih": "^0.50.0",
|
"jamilih": "^0.51.0",
|
||||||
"jsdoc": "^3.6.3",
|
"jsdoc": "^3.6.3",
|
||||||
"license-badger": "^0.9.3",
|
"license-badger": "^0.9.3",
|
||||||
"load-stylesheets": "^0.9.0",
|
"load-stylesheets": "^0.9.0",
|
||||||
|
|
Loading…
Reference in New Issue