fix lint issue and update dependencies
parent
16aa410b75
commit
a8be016400
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
|
@ -69,12 +69,12 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/polyfill": "7.12.1",
|
"@babel/polyfill": "7.12.1",
|
||||||
"browser-fs-access": "0.21.1",
|
"browser-fs-access": "0.23.0",
|
||||||
"canvg": "3.0.9",
|
"canvg": "3.0.9",
|
||||||
"core-js": "3.19.1",
|
"core-js": "3.19.2",
|
||||||
"elix": "15.0.1",
|
"elix": "15.0.1",
|
||||||
"html2canvas": "1.3.3",
|
"html2canvas": "1.3.3",
|
||||||
"i18next": "21.5.3",
|
"i18next": "21.5.4",
|
||||||
"jspdf": "2.4.0",
|
"jspdf": "2.4.0",
|
||||||
"pathseg": "1.2.1",
|
"pathseg": "1.2.1",
|
||||||
"regenerator-runtime": "0.13.9",
|
"regenerator-runtime": "0.13.9",
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
"@babel/preset-env": "7.16.4",
|
"@babel/preset-env": "7.16.4",
|
||||||
"@babel/register": "7.16.0",
|
"@babel/register": "7.16.0",
|
||||||
"@babel/runtime-corejs3": "7.16.3",
|
"@babel/runtime-corejs3": "7.16.3",
|
||||||
"@cypress/code-coverage": "3.9.11",
|
"@cypress/code-coverage": "3.9.12",
|
||||||
"@cypress/fiddle": "1.19.2",
|
"@cypress/fiddle": "1.19.2",
|
||||||
"@fintechstudios/eslint-plugin-chai-as-promised": "3.1.0",
|
"@fintechstudios/eslint-plugin-chai-as-promised": "3.1.0",
|
||||||
"@rollup/plugin-babel": "5.3.0",
|
"@rollup/plugin-babel": "5.3.0",
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
"@web/dev-server-rollup": "0.3.13",
|
"@web/dev-server-rollup": "0.3.13",
|
||||||
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
|
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
|
||||||
"copyfiles": "2.4.1",
|
"copyfiles": "2.4.1",
|
||||||
"core-js-bundle": "3.19.1",
|
"core-js-bundle": "3.19.2",
|
||||||
"cp-cli": "2.0.0",
|
"cp-cli": "2.0.0",
|
||||||
"cypress": "9.1.0",
|
"cypress": "9.1.0",
|
||||||
"cypress-multi-reporters": "1.5.0",
|
"cypress-multi-reporters": "1.5.0",
|
||||||
|
@ -135,7 +135,7 @@
|
||||||
"remark-cli": "10.0.1",
|
"remark-cli": "10.0.1",
|
||||||
"remark-lint-ordered-list-marker-value": "3.1.0",
|
"remark-lint-ordered-list-marker-value": "3.1.0",
|
||||||
"rimraf": "3.0.2",
|
"rimraf": "3.0.2",
|
||||||
"rollup": "2.60.1",
|
"rollup": "2.60.2",
|
||||||
"rollup-plugin-copy": "3.4.0",
|
"rollup-plugin-copy": "3.4.0",
|
||||||
"rollup-plugin-filesize": "9.1.1",
|
"rollup-plugin-filesize": "9.1.1",
|
||||||
"rollup-plugin-node-polyfills": "0.2.1",
|
"rollup-plugin-node-polyfills": "0.2.1",
|
||||||
|
|
|
@ -44,7 +44,7 @@ export default {
|
||||||
* @param {Event} e
|
* @param {Event} e
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
const importImage = (e) => {
|
const importImage = (e) => {
|
||||||
$id('se-prompt-dialog').title = this.i18next.t('notification.loadingImage');
|
$id('se-prompt-dialog').title = this.i18next.t('notification.loadingImage');
|
||||||
$id('se-prompt-dialog').setAttribute('close', false);
|
$id('se-prompt-dialog').setAttribute('close', false);
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
Loading…
Reference in New Issue