@easyv/charts 1.3.27 → 1.3.28

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 (49) hide show
  1. package/.babelrc +8 -8
  2. package/.husky/commit-msg +3 -3
  3. package/CHANGELOG.md +18 -18
  4. package/lib/components/Background.js +2 -2
  5. package/lib/components/ConicalGradient.js +21 -21
  6. package/lib/components/Indicator.js +2 -2
  7. package/lib/components/Lighter.js +179 -179
  8. package/lib/components/LinearGradient.js +2 -2
  9. package/lib/components/PieChart.js +3 -40
  10. package/lib/css/index.module.css +41 -41
  11. package/lib/css/piechart.module.css +26 -26
  12. package/lib/element/ConicGradient.js +72 -72
  13. package/lib/hooks/useAnimateData.js +5 -5
  14. package/lib/hooks/useFilterData.js +5 -5
  15. package/lib/hooks/useStackData.js +5 -5
  16. package/lib/hooks/useTooltip.js +10 -10
  17. package/package.json +1 -1
  18. package/src/components/Background.tsx +62 -62
  19. package/src/components/Band.tsx +192 -192
  20. package/src/components/Brush.js +159 -159
  21. package/src/components/Chart.js +99 -99
  22. package/src/components/ChartContainer.tsx +63 -63
  23. package/src/components/ConicalGradient.js +258 -258
  24. package/src/components/ExtentData.js +17 -17
  25. package/src/components/Indicator.js +13 -13
  26. package/src/components/Label.js +225 -225
  27. package/src/components/Lighter.jsx +173 -173
  28. package/src/components/Line.js +150 -150
  29. package/src/components/LinearGradient.js +29 -29
  30. package/src/components/PieChart.js +6 -51
  31. package/src/components/StereoBar.tsx +307 -307
  32. package/src/components/index.js +55 -55
  33. package/src/context/index.js +2 -2
  34. package/src/css/index.module.css +41 -41
  35. package/src/css/piechart.module.css +26 -26
  36. package/src/element/ConicGradient.jsx +55 -55
  37. package/src/element/Line.tsx +33 -33
  38. package/src/element/index.ts +3 -3
  39. package/src/formatter/index.js +1 -1
  40. package/src/formatter/legend.js +90 -90
  41. package/src/hooks/index.js +17 -17
  42. package/src/hooks/useAnimateData.ts +67 -67
  43. package/src/hooks/useFilterData.js +72 -72
  44. package/src/hooks/useStackData.js +101 -101
  45. package/src/hooks/useTooltip.ts +96 -96
  46. package/src/index.js +6 -6
  47. package/src/types/index.d.ts +67 -67
  48. package/src/utils/index.js +757 -757
  49. 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
+ }