@ecan-bi/pivot-table 1.0.6 → 1.0.7

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/style.css CHANGED
@@ -1,2 +1,2 @@
1
- /*! @ecan-bi/pivot-table@1.0.6 */
1
+ /*! @ecan-bi/pivot-table@1.0.7 */
2
2
  .design-template[data-v-229c4a43]{width:100%;height:100%;position:absolute;top:0;left:0;background-color:#f1f1f1;font-size:30px;display:flex;align-items:center;justify-content:center;letter-spacing:10px;color:#6f6f6f}.table-instance[data-v-229c4a43]{width:100%;height:100%}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecan-bi/pivot-table",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "types/index.d.ts",
@@ -1,170 +1,2 @@
1
- export declare const EcanPivotTable: import('../utils/withInstall').SFCWithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
- id: {
3
- type: StringConstructor;
4
- default: string;
5
- };
6
- name: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
- keyName: {
11
- type: StringConstructor;
12
- default: string;
13
- };
14
- type: {
15
- type: StringConstructor;
16
- default: string;
17
- };
18
- width: {
19
- type: StringConstructor;
20
- default: string;
21
- };
22
- height: {
23
- type: StringConstructor;
24
- default: string;
25
- };
26
- position: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- top: {
31
- type: StringConstructor;
32
- default: string;
33
- };
34
- left: {
35
- type: StringConstructor;
36
- default: string;
37
- };
38
- zIndex: {
39
- type: NumberConstructor;
40
- default: number;
41
- };
42
- events: {
43
- type: ArrayConstructor;
44
- default: () => any[];
45
- };
46
- dataType: {
47
- type: StringConstructor;
48
- default: string;
49
- };
50
- graphicConfig: {
51
- type: ObjectConstructor;
52
- default: () => {};
53
- };
54
- data: {
55
- type: ArrayConstructor;
56
- default: () => any[];
57
- };
58
- scale: {
59
- type: NumberConstructor;
60
- default: number;
61
- };
62
- dimensionList: {
63
- type: import("vue").PropType<any[]>;
64
- default: () => any[];
65
- };
66
- indicatorList: {
67
- type: import("vue").PropType<any[]>;
68
- default: () => any[];
69
- };
70
- pageMode: {
71
- type: StringConstructor;
72
- default: string;
73
- };
74
- }>, {
75
- pivotTableRef: import("vue").Ref<any, any>;
76
- click: () => void;
77
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
78
- id: {
79
- type: StringConstructor;
80
- default: string;
81
- };
82
- name: {
83
- type: StringConstructor;
84
- default: string;
85
- };
86
- keyName: {
87
- type: StringConstructor;
88
- default: string;
89
- };
90
- type: {
91
- type: StringConstructor;
92
- default: string;
93
- };
94
- width: {
95
- type: StringConstructor;
96
- default: string;
97
- };
98
- height: {
99
- type: StringConstructor;
100
- default: string;
101
- };
102
- position: {
103
- type: StringConstructor;
104
- default: string;
105
- };
106
- top: {
107
- type: StringConstructor;
108
- default: string;
109
- };
110
- left: {
111
- type: StringConstructor;
112
- default: string;
113
- };
114
- zIndex: {
115
- type: NumberConstructor;
116
- default: number;
117
- };
118
- events: {
119
- type: ArrayConstructor;
120
- default: () => any[];
121
- };
122
- dataType: {
123
- type: StringConstructor;
124
- default: string;
125
- };
126
- graphicConfig: {
127
- type: ObjectConstructor;
128
- default: () => {};
129
- };
130
- data: {
131
- type: ArrayConstructor;
132
- default: () => any[];
133
- };
134
- scale: {
135
- type: NumberConstructor;
136
- default: number;
137
- };
138
- dimensionList: {
139
- type: import("vue").PropType<any[]>;
140
- default: () => any[];
141
- };
142
- indicatorList: {
143
- type: import("vue").PropType<any[]>;
144
- default: () => any[];
145
- };
146
- pageMode: {
147
- type: StringConstructor;
148
- default: string;
149
- };
150
- }>> & Readonly<{}>, {
151
- id: string;
152
- type: string;
153
- name: string;
154
- keyName: string;
155
- width: string;
156
- height: string;
157
- position: string;
158
- top: string;
159
- left: string;
160
- zIndex: number;
161
- events: unknown[];
162
- dataType: string;
163
- graphicConfig: Record<string, any>;
164
- data: unknown[];
165
- scale: number;
166
- dimensionList: any[];
167
- indicatorList: any[];
168
- pageMode: string;
169
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>> & Record<string, any>;
1
+ export declare const EcanPivotTable: any;
170
2
  export default EcanPivotTable;
@@ -1,5 +1 @@
1
- import { Plugin } from 'vue';
2
- export declare type SFCWithInstall<T> = T & Plugin;
3
- export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E) => SFCWithInstall<T> & E;
4
- export declare const withInstallFunction: <T>(fn: T, name: string) => SFCWithInstall<T>;
5
- export declare const withNoopInstall: <T>(component: T) => SFCWithInstall<T>;
1
+ export declare const withInstall: (comp: any) => any;