@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.
- package/dist/index.es.js +21638 -16980
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +93 -29
- 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 +7897 -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,55 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
config: {
|
|
4
|
+
type: ArrayConstructor;
|
|
5
|
+
default(): any[];
|
|
6
|
+
};
|
|
7
|
+
isSelected: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
};
|
|
10
|
+
}>, {
|
|
11
|
+
modalType: import("vue").Ref<string, string>;
|
|
12
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
13
|
+
selectedIndex: import("vue").Ref<number, number>;
|
|
14
|
+
addItem: () => void;
|
|
15
|
+
handleOk: () => void;
|
|
16
|
+
editItem: () => void;
|
|
17
|
+
deleteItem: () => void;
|
|
18
|
+
operateOptions: {
|
|
19
|
+
label: string;
|
|
20
|
+
value: string;
|
|
21
|
+
}[];
|
|
22
|
+
formData: import("vue").Ref<{}, {}>;
|
|
23
|
+
joinOptions: {
|
|
24
|
+
label: string;
|
|
25
|
+
value: string;
|
|
26
|
+
}[];
|
|
27
|
+
isShowJoin: import("vue").Ref<boolean, boolean>;
|
|
28
|
+
formRules: {
|
|
29
|
+
operation: {
|
|
30
|
+
required: boolean;
|
|
31
|
+
message: string;
|
|
32
|
+
}[];
|
|
33
|
+
value: {
|
|
34
|
+
required: boolean;
|
|
35
|
+
message: string;
|
|
36
|
+
}[];
|
|
37
|
+
};
|
|
38
|
+
formRef: import("vue").Ref<any, any>;
|
|
39
|
+
conditionTitle: import("vue").ComputedRef<(item: any) => string>;
|
|
40
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
+
config: {
|
|
42
|
+
type: ArrayConstructor;
|
|
43
|
+
default(): any[];
|
|
44
|
+
};
|
|
45
|
+
isSelected: {
|
|
46
|
+
type: BooleanConstructor;
|
|
47
|
+
};
|
|
48
|
+
}>> & Readonly<{}>, {
|
|
49
|
+
config: unknown[];
|
|
50
|
+
isSelected: boolean;
|
|
51
|
+
}, {}, {
|
|
52
|
+
PlusCircleOutlined: import("@ant-design/icons-vue/lib/icons/PlusCircleOutlined").PlusCircleOutlinedIconType;
|
|
53
|
+
FormOutlined: import("@ant-design/icons-vue/lib/icons/FormOutlined").FormOutlinedIconType;
|
|
54
|
+
MinusCircleOutlined: import("@ant-design/icons-vue/lib/icons/MinusCircleOutlined").MinusCircleOutlinedIconType;
|
|
55
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export default _sfc_main;
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
config: {
|
|
4
|
+
type: ArrayConstructor;
|
|
5
|
+
default(): any[];
|
|
6
|
+
};
|
|
7
|
+
}>, {
|
|
8
|
+
modalType: import("vue").Ref<string, string>;
|
|
9
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
10
|
+
selectedIndex: import("vue").Ref<number, number>;
|
|
11
|
+
addItem: () => void;
|
|
12
|
+
name: import("vue").Ref<string, string>;
|
|
13
|
+
handleOk: () => void;
|
|
14
|
+
editItem: () => void;
|
|
15
|
+
deleteItem: () => void;
|
|
16
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
config: {
|
|
18
|
+
type: ArrayConstructor;
|
|
19
|
+
default(): any[];
|
|
20
|
+
};
|
|
21
|
+
}>> & Readonly<{}>, {
|
|
22
|
+
config: unknown[];
|
|
23
|
+
}, {}, {
|
|
24
|
+
PlusCircleOutlined: import("@ant-design/icons-vue/lib/icons/PlusCircleOutlined").PlusCircleOutlinedIconType;
|
|
25
|
+
FormOutlined: import("@ant-design/icons-vue/lib/icons/FormOutlined").FormOutlinedIconType;
|
|
26
|
+
MinusCircleOutlined: import("@ant-design/icons-vue/lib/icons/MinusCircleOutlined").MinusCircleOutlinedIconType;
|
|
27
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|