@ecan-bi/pivot-table 1.0.7 → 1.0.9

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.
@@ -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,2 @@
1
+ import ConditionalProperty from './ConditionalProperty.vue';
2
+ export default ConditionalProperty;
@@ -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>;
@@ -0,0 +1,2 @@
1
+ import PivotChart from './PivotChart.vue';
2
+ export default PivotChart;
@@ -21,3 +21,4 @@ export declare const handleVariableList: (variableList: {
21
21
  [key: string]: any;
22
22
  }[]) => any[];
23
23
  export declare const getEventName: (type: string) => string;
24
+ export declare function getIcon(type: string, color: string): string;