@easyv/charts 1.7.35 → 1.7.37

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.
Files changed (61) hide show
  1. package/.babelrc +8 -8
  2. package/CHANGELOG.md +18 -18
  3. package/commitlint.config.js +1 -1
  4. package/lib/components/Background.js +2 -2
  5. package/lib/components/Band.js +2 -2
  6. package/lib/components/Brush.js +2 -2
  7. package/lib/components/Chart.js +2 -2
  8. package/lib/components/ChartContainer.js +2 -2
  9. package/lib/components/ConicalGradient.js +21 -21
  10. package/lib/components/Control.js +5 -1
  11. package/lib/components/ExtentData.js +2 -2
  12. package/lib/components/Indicator.js +2 -2
  13. package/lib/components/Label.js +2 -2
  14. package/lib/components/Legend.js +38 -6
  15. package/lib/components/Lighter.js +2 -2
  16. package/lib/components/Line.js +2 -2
  17. package/lib/components/LinearGradient.js +2 -2
  18. package/lib/components/StereoBar.js +2 -2
  19. package/lib/css/index.module.css +39 -42
  20. package/lib/css/piechart.module.css +26 -26
  21. package/lib/formatter/legend.js +55 -50
  22. package/lib/hooks/useAnimateData.js +6 -6
  23. package/lib/hooks/useFilterData.js +5 -5
  24. package/lib/hooks/useStackData.js +5 -5
  25. package/lib/hooks/useTooltip.js +11 -11
  26. package/package.json +54 -54
  27. package/src/components/Background.tsx +61 -61
  28. package/src/components/Band.tsx +334 -334
  29. package/src/components/Brush.js +159 -159
  30. package/src/components/Chart.js +157 -157
  31. package/src/components/ChartContainer.tsx +71 -71
  32. package/src/components/ConicalGradient.js +258 -258
  33. package/src/components/Control.jsx +242 -242
  34. package/src/components/ExtentData.js +18 -18
  35. package/src/components/Indicator.js +61 -61
  36. package/src/components/Label.js +262 -262
  37. package/src/components/Legend.js +289 -267
  38. package/src/components/Lighter.jsx +173 -173
  39. package/src/components/Line.js +153 -153
  40. package/src/components/LinearGradient.js +29 -29
  41. package/src/components/PieTooltip.jsx +160 -160
  42. package/src/components/SplitText.tsx +70 -70
  43. package/src/components/StereoBar.tsx +307 -307
  44. package/src/components/index.js +61 -61
  45. package/src/context/index.js +2 -2
  46. package/src/css/index.module.css +39 -42
  47. package/src/css/piechart.module.css +26 -26
  48. package/src/element/ConicGradient.jsx +55 -55
  49. package/src/element/Line.tsx +33 -33
  50. package/src/element/index.ts +3 -3
  51. package/src/formatter/index.js +1 -1
  52. package/src/formatter/legend.js +122 -115
  53. package/src/hooks/index.js +20 -20
  54. package/src/hooks/useAnimateData.ts +68 -68
  55. package/src/hooks/useFilterData.js +77 -77
  56. package/src/hooks/useStackData.js +140 -140
  57. package/src/hooks/useTooltip.ts +103 -103
  58. package/src/index.js +6 -6
  59. package/src/types/index.d.ts +68 -68
  60. package/src/utils/index.js +812 -812
  61. package/tsconfig.json +23 -23
package/tsconfig.json CHANGED
@@ -1,23 +1,23 @@
1
- {
2
- "compilerOptions": {
3
- "jsx": "react",
4
- // Target latest version of ECMAScript.
5
- "target": "esnext",
6
- // Search under node_modules for non-relative imports.
7
- "moduleResolution": "node",
8
- // Process & infer types from .js files.
9
- "allowJs": true,
10
- // Don't emit; allow Babel to transform files.
11
- "noEmit": true,
12
- // Enable strictest settings like strictNullChecks & noImplicitAny.
13
- "strict": true,
14
- // Disallow features that require cross-file information for emit.
15
- "isolatedModules": true,
16
- // Import non-ES modules as default imports.
17
- "esModuleInterop": true,
18
-
19
- "types": ["src/types"]
20
- },
21
- "include": ["src"],
22
- "exclude": ["node_modules", "**/*.spec.ts"]
23
- }
1
+ {
2
+ "compilerOptions": {
3
+ "jsx": "react",
4
+ // Target latest version of ECMAScript.
5
+ "target": "esnext",
6
+ // Search under node_modules for non-relative imports.
7
+ "moduleResolution": "node",
8
+ // Process & infer types from .js files.
9
+ "allowJs": true,
10
+ // Don't emit; allow Babel to transform files.
11
+ "noEmit": true,
12
+ // Enable strictest settings like strictNullChecks & noImplicitAny.
13
+ "strict": true,
14
+ // Disallow features that require cross-file information for emit.
15
+ "isolatedModules": true,
16
+ // Import non-ES modules as default imports.
17
+ "esModuleInterop": true,
18
+
19
+ "types": ["src/types"]
20
+ },
21
+ "include": ["src"],
22
+ "exclude": ["node_modules", "**/*.spec.ts"]
23
+ }