@cloudbase/weda-ui 3.13.3 → 3.13.5
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/configs/components/chart/line.d.ts +4 -0
- package/dist/configs/components/chart/line.js +27 -0
- package/dist/configs/components/chart/pie.d.ts +128 -0
- package/dist/configs/components/chart/pie.js +917 -0
- package/dist/configs/index.d.ts +8844 -9814
- package/dist/configs/index.js +1 -1
- package/dist/configs/type-utils/index.js +1 -7
- package/dist/style/weda-ui.min.css +2 -2
- package/dist/web/components/echart/echart.js +1 -1
- package/package.json +1 -1
- package/dist/configs/components/chart/pie.json +0 -834
package/dist/configs/index.js
CHANGED
|
@@ -32,7 +32,7 @@ import ListView from './components/listView';
|
|
|
32
32
|
import NavigationBar from './components/navigationBar.json';
|
|
33
33
|
import Line from './components/chart/line';
|
|
34
34
|
import Bar from './components/chart/bar';
|
|
35
|
-
import Pie from './components/chart/pie
|
|
35
|
+
import Pie from './components/chart/pie';
|
|
36
36
|
import DataView from './components/dataView';
|
|
37
37
|
import StatisticsCard from './components/chart/statisticsCard.json';
|
|
38
38
|
import GraphicCard from './components/graphicCard.json';
|
|
@@ -25,13 +25,7 @@ const dataSourceFormat = [
|
|
|
25
25
|
'father-son',
|
|
26
26
|
'many-many',
|
|
27
27
|
];
|
|
28
|
-
const jsonBasicType = [
|
|
29
|
-
'string',
|
|
30
|
-
'number',
|
|
31
|
-
'array',
|
|
32
|
-
'object',
|
|
33
|
-
'boolean',
|
|
34
|
-
];
|
|
28
|
+
const jsonBasicType = ['string', 'number', 'array', 'object', 'boolean'];
|
|
35
29
|
class TypeBuilder extends TypeboxTypeBuilder {
|
|
36
30
|
makeEnumOptions(options) {
|
|
37
31
|
const { enum: enumProp, 'x-index?': xIndex, 'x-component-props': XComponentProps, ...restOpt } = options;
|