@quillsql/react 2.15.0 → 2.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/utils/color.js +1 -1
- package/dist/esm/utils/color.js +1 -1
- package/package.json +10 -4
package/dist/cjs/utils/color.js
CHANGED
|
@@ -375,7 +375,7 @@ exports.COLOR_TO_HEX = {
|
|
|
375
375
|
* @return Array The HSL representation
|
|
376
376
|
*/
|
|
377
377
|
function rgbToHsl(r, g, b) {
|
|
378
|
-
(r /= 255), (g /= 255), (b /= 255);
|
|
378
|
+
((r /= 255), (g /= 255), (b /= 255));
|
|
379
379
|
const max = Math.max(r, g, b), min = Math.min(r, g, b);
|
|
380
380
|
let h = (max + min) / 2;
|
|
381
381
|
let s = (max + min) / 2;
|
package/dist/esm/utils/color.js
CHANGED
|
@@ -365,7 +365,7 @@ export const COLOR_TO_HEX = {
|
|
|
365
365
|
* @return Array The HSL representation
|
|
366
366
|
*/
|
|
367
367
|
export function rgbToHsl(r, g, b) {
|
|
368
|
-
(r /= 255), (g /= 255), (b /= 255);
|
|
368
|
+
((r /= 255), (g /= 255), (b /= 255));
|
|
369
369
|
const max = Math.max(r, g, b), min = Math.min(r, g, b);
|
|
370
370
|
let h = (max + min) / 2;
|
|
371
371
|
let s = (max + min) / 2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quillsql/react",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.1",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./dist/esm/index.js",
|
|
@@ -29,14 +29,15 @@
|
|
|
29
29
|
"@monaco-editor/react": "^4.5.1",
|
|
30
30
|
"big.js": "^6.2.1",
|
|
31
31
|
"d3-geo": "2.0.2",
|
|
32
|
-
"d3-interpolate": "3.0.
|
|
32
|
+
"d3-interpolate": "^3.0.0",
|
|
33
33
|
"d3-scale": "4.0.2",
|
|
34
34
|
"d3-selection": "2.0.0",
|
|
35
35
|
"d3-shape": "3.2.0",
|
|
36
36
|
"date-fns": "^2.29.3",
|
|
37
37
|
"date-fns-tz": "^2.0.0",
|
|
38
38
|
"fast-deep-equal": "^3.1.3",
|
|
39
|
-
"jspdf": "^
|
|
39
|
+
"jspdf": "^3.0.1",
|
|
40
|
+
"react-day-picker": "^9.7.0",
|
|
40
41
|
"react-simple-maps": "^3.0.0",
|
|
41
42
|
"recharts": "^2.13.0"
|
|
42
43
|
},
|
|
@@ -66,5 +67,10 @@
|
|
|
66
67
|
"react": "^18",
|
|
67
68
|
"react-dom": "^18"
|
|
68
69
|
},
|
|
69
|
-
"access": "public"
|
|
70
|
+
"access": "public",
|
|
71
|
+
"overrides": {
|
|
72
|
+
"d3-color": "^3.1.0",
|
|
73
|
+
"d3-transition": "^3.0.0",
|
|
74
|
+
"d3-zoom": "^3.0.0"
|
|
75
|
+
}
|
|
70
76
|
}
|