@lobehub/charts 3.0.2 → 3.0.4

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.
@@ -15,8 +15,7 @@ function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToAr
15
15
  function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
16
16
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
17
17
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
18
- import { Flexbox } from '@lobehub/ui';
19
- import { A } from '@lobehub/ui/es/A/index.mjs';
18
+ import { A, Flexbox } from '@lobehub/ui';
20
19
  import { Skeleton } from 'antd';
21
20
  import React, { forwardRef, useMemo } from 'react';
22
21
  import NoData from "../common/NoData";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/charts",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
4
4
  "description": "React modern charts components built on recharts",
5
5
  "keywords": [
6
6
  "lobehub",
@@ -26,7 +26,6 @@
26
26
  "es"
27
27
  ],
28
28
  "dependencies": {
29
- "@lobehub/ui": "^3.4.5",
30
29
  "ahooks": "^3.9.6",
31
30
  "antd-style": "^3.7.1",
32
31
  "chroma-js": "^3.2.0",
@@ -37,6 +36,7 @@
37
36
  "recharts": "^2.15.4"
38
37
  },
39
38
  "peerDependencies": {
39
+ "@lobehub/ui": "^3.4.5",
40
40
  "antd": "^6.1.1",
41
41
  "react": "^19.0.0",
42
42
  "react-dom": "^19.0.0"