update dependencies (#764)

* update dependencies
* fix linter issues
This commit is contained in:
JFH
2022-05-16 09:38:45 +02:00
committed by GitHub
parent dbc9ed7124
commit 7cbcb6989c
10 changed files with 5551 additions and 2352 deletions

View File

@@ -1597,10 +1597,10 @@ export function jPickerMethod (elem, options, commitCallback, liveCallback, canc
const color = {
active: (typeof settings.color.active).toString().toLowerCase() === 'string'
? new Color({
ahex: !settings.window.alphaSupport && settings.color.active
? settings.color.active.substring(0, 6) + 'ff'
: settings.color.active
})
ahex: !settings.window.alphaSupport && settings.color.active
? settings.color.active.substring(0, 6) + 'ff'
: settings.color.active
})
: new Color({
ahex: !settings.window.alphaSupport &&
settings.color.active.val('ahex')
@@ -1609,10 +1609,10 @@ export function jPickerMethod (elem, options, commitCallback, liveCallback, canc
}),
current: (typeof settings.color.active).toString().toLowerCase() === 'string'
? new Color({
ahex: !settings.window.alphaSupport && settings.color.active
? settings.color.active.substring(0, 6) + 'ff'
: settings.color.active
})
ahex: !settings.window.alphaSupport && settings.color.active
? settings.color.active.substring(0, 6) + 'ff'
: settings.color.active
})
: new Color({
ahex: !settings.window.alphaSupport &&
settings.color.active.val('ahex')

File diff suppressed because it is too large Load Diff

View File

@@ -9,18 +9,18 @@
"author": "OptimistikSAS",
"license": "MIT",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"standardjs": "^1.0.0-alpha"
"react": "^18.1.0",
"react-dom": "^18.1.0",
"standard": "^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/core": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.63.0"
"rollup": "^2.73.0"
}
}