@ecan-bi/pivot-table 1.0.7 → 1.0.8
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/index.es.js +21414 -16731
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +92 -28
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/pivotTable/ChartModal.vue.d.ts +81 -0
- package/types/pivotTable/PivotAggregate.vue.d.ts +10 -0
- package/types/pivotTable/PivotFilter.vue.d.ts +29 -0
- package/types/pivotTable/PivotProperty.vue.d.ts +473 -0
- package/types/pivotTable/PivotTable.vue.d.ts +7874 -7
- package/types/pivotTable/PivotTop.vue.d.ts +6 -0
- package/types/pivotTable/conditional-property/ConditionalProperty.vue.d.ts +7246 -0
- package/types/pivotTable/conditional-property/components/ConditionalConfig.vue.d.ts +55 -0
- package/types/pivotTable/conditional-property/components/ConditionalItemConfig.vue.d.ts +27 -0
- package/types/pivotTable/conditional-property/components/PropertyConfig.vue.d.ts +7156 -0
- package/types/pivotTable/conditional-property/components/prop-to-form/ColorPick.vue.d.ts +7091 -0
- package/types/pivotTable/conditional-property/components/prop-to-form/Radio.vue.d.ts +25 -0
- package/types/pivotTable/conditional-property/index.d.ts +2 -0
- package/types/pivotTable/pivot-chart/PivotChart.vue.d.ts +75 -0
- package/types/pivotTable/pivot-chart/index.d.ts +2 -0
- package/types/utils/util.d.ts +1 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
value: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
options: {
|
|
8
|
+
type: ArrayConstructor;
|
|
9
|
+
default(): any[];
|
|
10
|
+
};
|
|
11
|
+
}>, {
|
|
12
|
+
onChange: (event: any) => void;
|
|
13
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
value: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
options: {
|
|
19
|
+
type: ArrayConstructor;
|
|
20
|
+
default(): any[];
|
|
21
|
+
};
|
|
22
|
+
}>> & Readonly<{}>, {
|
|
23
|
+
value: string;
|
|
24
|
+
options: unknown[];
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
data: {
|
|
4
|
+
type: ObjectConstructor;
|
|
5
|
+
default(): {
|
|
6
|
+
dimensionData: {};
|
|
7
|
+
xLabel: string;
|
|
8
|
+
yLabel: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
}>, {
|
|
12
|
+
echartRef: import("vue").Ref<any, any>;
|
|
13
|
+
dropdownList: import("vue").Ref<any[], any[]>;
|
|
14
|
+
isShowMenu: import("vue").Ref<boolean, boolean>;
|
|
15
|
+
curXLabel: import("vue").ComputedRef<any>;
|
|
16
|
+
menuStyle: {
|
|
17
|
+
position: string;
|
|
18
|
+
top: string;
|
|
19
|
+
left: string;
|
|
20
|
+
};
|
|
21
|
+
drillDimension: (xLabel: any) => void;
|
|
22
|
+
dimensionMap: import("vue").Ref<any[], any[]>;
|
|
23
|
+
deleteDimension: (index: any, xLabel: any) => void;
|
|
24
|
+
handleSort: (key: any, type: any) => void;
|
|
25
|
+
handleClear: (type: any) => void;
|
|
26
|
+
handleFilter: (type: any) => void;
|
|
27
|
+
pivotFilterRef: import("vue").Ref<any, any>;
|
|
28
|
+
filterData: import("vue").Ref<{}, {}>;
|
|
29
|
+
onFilterChange: ({ checkKeys, type }: {
|
|
30
|
+
checkKeys: any;
|
|
31
|
+
type: any;
|
|
32
|
+
}) => void;
|
|
33
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
data: {
|
|
35
|
+
type: ObjectConstructor;
|
|
36
|
+
default(): {
|
|
37
|
+
dimensionData: {};
|
|
38
|
+
xLabel: string;
|
|
39
|
+
yLabel: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}>> & Readonly<{}>, {
|
|
43
|
+
data: Record<string, any>;
|
|
44
|
+
}, {}, {
|
|
45
|
+
FilterOutlined: import("@ant-design/icons-vue/lib/icons/FilterOutlined").FilterOutlinedIconType;
|
|
46
|
+
MinusSquareOutlined: import("@ant-design/icons-vue/lib/icons/MinusSquareOutlined").MinusSquareOutlinedIconType;
|
|
47
|
+
PivotFilter: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
48
|
+
data: {
|
|
49
|
+
type: ObjectConstructor;
|
|
50
|
+
default: () => void;
|
|
51
|
+
};
|
|
52
|
+
}>, {
|
|
53
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
54
|
+
checkAllDimensions: import("vue").Ref<boolean, boolean>;
|
|
55
|
+
dimIndeterminate: import("vue").Ref<boolean, boolean>;
|
|
56
|
+
dimensionCheckKeys: import("vue").Ref<any[], any[]>;
|
|
57
|
+
ruleValue: import("vue").Ref<string, string>;
|
|
58
|
+
ruleOptions: {
|
|
59
|
+
label: string;
|
|
60
|
+
value: string;
|
|
61
|
+
}[];
|
|
62
|
+
filterValue: import("vue").Ref<string, string>;
|
|
63
|
+
searchDimName: import("vue").Ref<string, string>;
|
|
64
|
+
handleOk: () => void;
|
|
65
|
+
onCheckAllDimChange: (e: any) => void;
|
|
66
|
+
handleClear: () => void;
|
|
67
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
68
|
+
data: {
|
|
69
|
+
type: ObjectConstructor;
|
|
70
|
+
default: () => void;
|
|
71
|
+
};
|
|
72
|
+
}>> & Readonly<{}>, {
|
|
73
|
+
data: Record<string, any>;
|
|
74
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
75
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/types/utils/util.d.ts
CHANGED