@grapecity-software/spread-sheets-vue 17.1.4 → 17.1.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/index.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grapecity-software/spread-sheets-vue",
|
|
3
|
-
"version": "17.1.
|
|
3
|
+
"version": "17.1.5",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description":"SpreadJS vue support",
|
|
6
6
|
"scripts": {},
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"javascript"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@grapecity-software/spread-sheets": "17.1.
|
|
15
|
+
"@grapecity-software/spread-sheets": "17.1.5",
|
|
16
16
|
"tiny-emitter": "^2.1.0"
|
|
17
17
|
},
|
|
18
18
|
"author": {
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
dataField: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
};
|
|
5
|
+
headerText: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
};
|
|
8
|
+
width: {
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
};
|
|
11
|
+
visible: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
};
|
|
14
|
+
resizable: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
};
|
|
17
|
+
autoFit: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
};
|
|
20
|
+
columnStyle: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
};
|
|
23
|
+
headerStyle: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
};
|
|
26
|
+
cellType: {
|
|
27
|
+
type: ObjectConstructor;
|
|
28
|
+
};
|
|
29
|
+
formatter: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
};
|
|
32
|
+
}, {
|
|
33
|
+
props: import("@vue/shared").LooseRequired<{
|
|
34
|
+
readonly visible: boolean;
|
|
35
|
+
readonly resizable: boolean;
|
|
36
|
+
readonly autoFit: boolean;
|
|
37
|
+
readonly dataField?: string | undefined;
|
|
38
|
+
readonly headerText?: string | undefined;
|
|
39
|
+
readonly width?: number | undefined;
|
|
40
|
+
readonly columnStyle?: Record<string, any> | undefined;
|
|
41
|
+
readonly headerStyle?: Record<string, any> | undefined;
|
|
42
|
+
readonly cellType?: Record<string, any> | undefined;
|
|
43
|
+
readonly formatter?: string | undefined;
|
|
44
|
+
} & {}>;
|
|
45
|
+
updateTagVisible: () => void;
|
|
46
|
+
getColumnIndex: () => number;
|
|
47
|
+
setColumnOptions: (attr: string, value: any) => void;
|
|
48
|
+
initColumn: () => void;
|
|
49
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
dataField: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
};
|
|
53
|
+
headerText: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
};
|
|
56
|
+
width: {
|
|
57
|
+
type: NumberConstructor;
|
|
58
|
+
};
|
|
59
|
+
visible: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
};
|
|
62
|
+
resizable: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
};
|
|
65
|
+
autoFit: {
|
|
66
|
+
type: BooleanConstructor;
|
|
67
|
+
};
|
|
68
|
+
columnStyle: {
|
|
69
|
+
type: ObjectConstructor;
|
|
70
|
+
};
|
|
71
|
+
headerStyle: {
|
|
72
|
+
type: ObjectConstructor;
|
|
73
|
+
};
|
|
74
|
+
cellType: {
|
|
75
|
+
type: ObjectConstructor;
|
|
76
|
+
};
|
|
77
|
+
formatter: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
};
|
|
80
|
+
}>>, {
|
|
81
|
+
visible: boolean;
|
|
82
|
+
resizable: boolean;
|
|
83
|
+
autoFit: boolean;
|
|
84
|
+
}, {}>;
|
|
85
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
import GC from '@grapecity-software/spread-sheets';
|
|
2
|
+
import type { PropType } from "vue";
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
hostStyle: {
|
|
5
|
+
type: ObjectConstructor;
|
|
6
|
+
};
|
|
7
|
+
hostClass: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
};
|
|
10
|
+
name: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
};
|
|
13
|
+
allowUserZoom: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
};
|
|
16
|
+
allowUserResize: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
};
|
|
19
|
+
allowUserDragMerge: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
};
|
|
22
|
+
allowUndo: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
};
|
|
25
|
+
allowSheetReorder: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
};
|
|
28
|
+
allowContextMenu: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
};
|
|
31
|
+
allowUserDeselect: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
};
|
|
34
|
+
allowCopyPasteExcelStyle: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
};
|
|
37
|
+
allowExtendPasteRange: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
};
|
|
40
|
+
tabStripVisible: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
};
|
|
43
|
+
tabEditable: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
};
|
|
46
|
+
tabStripRatio: {
|
|
47
|
+
type: NumberConstructor;
|
|
48
|
+
};
|
|
49
|
+
tabNavigationVisible: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
};
|
|
52
|
+
newTabVisible: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
};
|
|
55
|
+
allowUserEditFormula: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
};
|
|
58
|
+
autoFitType: {
|
|
59
|
+
type: PropType<GC.Spread.Sheets.AutoFitType>;
|
|
60
|
+
};
|
|
61
|
+
allowUserDragFill: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
};
|
|
64
|
+
allowUserDragDrop: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
};
|
|
67
|
+
highlightInvalidData: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
};
|
|
70
|
+
referenceStyle: {
|
|
71
|
+
type: PropType<GC.Spread.Sheets.ReferenceStyle>;
|
|
72
|
+
};
|
|
73
|
+
backColor: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
};
|
|
76
|
+
grayAreaBackColor: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
};
|
|
79
|
+
backgroundImage: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
};
|
|
82
|
+
backgroundImageLayout: {
|
|
83
|
+
type: PropType<GC.Spread.Sheets.ImageLayout>;
|
|
84
|
+
};
|
|
85
|
+
cutCopyIndicatorVisible: {
|
|
86
|
+
type: BooleanConstructor;
|
|
87
|
+
};
|
|
88
|
+
cutCopyIndicatorBorderColor: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
};
|
|
91
|
+
copyPasteHeaderOptions: {
|
|
92
|
+
type: PropType<GC.Spread.Sheets.CopyPasteHeaderOptions>;
|
|
93
|
+
};
|
|
94
|
+
defaultDragFillType: {
|
|
95
|
+
type: PropType<GC.Spread.Sheets.Fill.AutoFillType>;
|
|
96
|
+
};
|
|
97
|
+
enableFormulaTextbox: {
|
|
98
|
+
type: BooleanConstructor;
|
|
99
|
+
};
|
|
100
|
+
hideSelection: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
};
|
|
103
|
+
resizeZeroIndicator: {
|
|
104
|
+
type: PropType<GC.Spread.Sheets.ResizeZeroIndicator>;
|
|
105
|
+
};
|
|
106
|
+
showDragFillSmartTag: {
|
|
107
|
+
type: BooleanConstructor;
|
|
108
|
+
};
|
|
109
|
+
scrollbarShowMax: {
|
|
110
|
+
type: BooleanConstructor;
|
|
111
|
+
};
|
|
112
|
+
scrollbarMaxAlign: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
};
|
|
115
|
+
scrollIgnoreHidden: {
|
|
116
|
+
type: BooleanConstructor;
|
|
117
|
+
};
|
|
118
|
+
showVerticalScrollbar: {
|
|
119
|
+
type: BooleanConstructor;
|
|
120
|
+
};
|
|
121
|
+
showHorizontalScrollbar: {
|
|
122
|
+
type: BooleanConstructor;
|
|
123
|
+
};
|
|
124
|
+
showScrollTip: {
|
|
125
|
+
type: PropType<GC.Spread.Sheets.ShowScrollTip>;
|
|
126
|
+
};
|
|
127
|
+
showResizeTip: {
|
|
128
|
+
type: PropType<GC.Spread.Sheets.ShowResizeTip>;
|
|
129
|
+
};
|
|
130
|
+
showDragDropTip: {
|
|
131
|
+
type: BooleanConstructor;
|
|
132
|
+
};
|
|
133
|
+
showDragFillTip: {
|
|
134
|
+
type: BooleanConstructor;
|
|
135
|
+
};
|
|
136
|
+
useTouchLayout: {
|
|
137
|
+
type: BooleanConstructor;
|
|
138
|
+
};
|
|
139
|
+
}, {
|
|
140
|
+
props: import("@vue/shared").LooseRequired<{
|
|
141
|
+
readonly allowUserDragDrop: boolean;
|
|
142
|
+
readonly allowUserDragFill: boolean;
|
|
143
|
+
readonly allowUserZoom: boolean;
|
|
144
|
+
readonly allowUserResize: boolean;
|
|
145
|
+
readonly allowUndo: boolean;
|
|
146
|
+
readonly allowSheetReorder: boolean;
|
|
147
|
+
readonly allowContextMenu: boolean;
|
|
148
|
+
readonly allowUserDeselect: boolean;
|
|
149
|
+
readonly showDragFillSmartTag: boolean;
|
|
150
|
+
readonly showHorizontalScrollbar: boolean;
|
|
151
|
+
readonly showVerticalScrollbar: boolean;
|
|
152
|
+
readonly scrollbarShowMax: boolean;
|
|
153
|
+
readonly scrollbarMaxAlign: boolean;
|
|
154
|
+
readonly tabStripVisible: boolean;
|
|
155
|
+
readonly tabEditable: boolean;
|
|
156
|
+
readonly newTabVisible: boolean;
|
|
157
|
+
readonly cutCopyIndicatorVisible: boolean;
|
|
158
|
+
readonly tabNavigationVisible: boolean;
|
|
159
|
+
readonly showDragDropTip: boolean;
|
|
160
|
+
readonly showDragFillTip: boolean;
|
|
161
|
+
readonly scrollIgnoreHidden: boolean;
|
|
162
|
+
readonly highlightInvalidData: boolean;
|
|
163
|
+
readonly useTouchLayout: boolean;
|
|
164
|
+
readonly hideSelection: boolean;
|
|
165
|
+
readonly allowUserEditFormula: boolean;
|
|
166
|
+
readonly enableFormulaTextbox: boolean;
|
|
167
|
+
readonly allowCopyPasteExcelStyle: boolean;
|
|
168
|
+
readonly allowExtendPasteRange: boolean;
|
|
169
|
+
readonly allowUserDragMerge: boolean;
|
|
170
|
+
readonly defaultDragFillType?: GC.Spread.Sheets.Fill.AutoFillType | undefined;
|
|
171
|
+
readonly tabStripRatio?: number | undefined;
|
|
172
|
+
readonly cutCopyIndicatorBorderColor?: string | undefined;
|
|
173
|
+
readonly backColor?: string | undefined;
|
|
174
|
+
readonly backgroundImage?: string | undefined;
|
|
175
|
+
readonly backgroundImageLayout?: GC.Spread.Sheets.ImageLayout | undefined;
|
|
176
|
+
readonly showResizeTip?: GC.Spread.Sheets.ShowResizeTip | undefined;
|
|
177
|
+
readonly showScrollTip?: GC.Spread.Sheets.ShowScrollTip | undefined;
|
|
178
|
+
readonly grayAreaBackColor?: string | undefined;
|
|
179
|
+
readonly resizeZeroIndicator?: GC.Spread.Sheets.ResizeZeroIndicator | undefined;
|
|
180
|
+
readonly referenceStyle?: GC.Spread.Sheets.ReferenceStyle | undefined;
|
|
181
|
+
readonly autoFitType?: GC.Spread.Sheets.AutoFitType | undefined;
|
|
182
|
+
readonly copyPasteHeaderOptions?: GC.Spread.Sheets.CopyPasteHeaderOptions | undefined;
|
|
183
|
+
readonly name?: string | undefined;
|
|
184
|
+
readonly hostStyle?: Record<string, any> | undefined;
|
|
185
|
+
readonly hostClass?: string | undefined;
|
|
186
|
+
} & {}>;
|
|
187
|
+
getSheetTagCount: () => number;
|
|
188
|
+
bindSpreadEvent: (spread: GC.Spread.Sheets.Workbook) => void;
|
|
189
|
+
setSpreadOptions: (attr: string, value: any) => void;
|
|
190
|
+
initSpread: () => void;
|
|
191
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
192
|
+
hostStyle: {
|
|
193
|
+
type: ObjectConstructor;
|
|
194
|
+
};
|
|
195
|
+
hostClass: {
|
|
196
|
+
type: StringConstructor;
|
|
197
|
+
};
|
|
198
|
+
name: {
|
|
199
|
+
type: StringConstructor;
|
|
200
|
+
};
|
|
201
|
+
allowUserZoom: {
|
|
202
|
+
type: BooleanConstructor;
|
|
203
|
+
};
|
|
204
|
+
allowUserResize: {
|
|
205
|
+
type: BooleanConstructor;
|
|
206
|
+
};
|
|
207
|
+
allowUserDragMerge: {
|
|
208
|
+
type: BooleanConstructor;
|
|
209
|
+
};
|
|
210
|
+
allowUndo: {
|
|
211
|
+
type: BooleanConstructor;
|
|
212
|
+
};
|
|
213
|
+
allowSheetReorder: {
|
|
214
|
+
type: BooleanConstructor;
|
|
215
|
+
};
|
|
216
|
+
allowContextMenu: {
|
|
217
|
+
type: BooleanConstructor;
|
|
218
|
+
};
|
|
219
|
+
allowUserDeselect: {
|
|
220
|
+
type: BooleanConstructor;
|
|
221
|
+
};
|
|
222
|
+
allowCopyPasteExcelStyle: {
|
|
223
|
+
type: BooleanConstructor;
|
|
224
|
+
};
|
|
225
|
+
allowExtendPasteRange: {
|
|
226
|
+
type: BooleanConstructor;
|
|
227
|
+
};
|
|
228
|
+
tabStripVisible: {
|
|
229
|
+
type: BooleanConstructor;
|
|
230
|
+
};
|
|
231
|
+
tabEditable: {
|
|
232
|
+
type: BooleanConstructor;
|
|
233
|
+
};
|
|
234
|
+
tabStripRatio: {
|
|
235
|
+
type: NumberConstructor;
|
|
236
|
+
};
|
|
237
|
+
tabNavigationVisible: {
|
|
238
|
+
type: BooleanConstructor;
|
|
239
|
+
};
|
|
240
|
+
newTabVisible: {
|
|
241
|
+
type: BooleanConstructor;
|
|
242
|
+
};
|
|
243
|
+
allowUserEditFormula: {
|
|
244
|
+
type: BooleanConstructor;
|
|
245
|
+
};
|
|
246
|
+
autoFitType: {
|
|
247
|
+
type: PropType<GC.Spread.Sheets.AutoFitType>;
|
|
248
|
+
};
|
|
249
|
+
allowUserDragFill: {
|
|
250
|
+
type: BooleanConstructor;
|
|
251
|
+
};
|
|
252
|
+
allowUserDragDrop: {
|
|
253
|
+
type: BooleanConstructor;
|
|
254
|
+
};
|
|
255
|
+
highlightInvalidData: {
|
|
256
|
+
type: BooleanConstructor;
|
|
257
|
+
};
|
|
258
|
+
referenceStyle: {
|
|
259
|
+
type: PropType<GC.Spread.Sheets.ReferenceStyle>;
|
|
260
|
+
};
|
|
261
|
+
backColor: {
|
|
262
|
+
type: StringConstructor;
|
|
263
|
+
};
|
|
264
|
+
grayAreaBackColor: {
|
|
265
|
+
type: StringConstructor;
|
|
266
|
+
};
|
|
267
|
+
backgroundImage: {
|
|
268
|
+
type: StringConstructor;
|
|
269
|
+
};
|
|
270
|
+
backgroundImageLayout: {
|
|
271
|
+
type: PropType<GC.Spread.Sheets.ImageLayout>;
|
|
272
|
+
};
|
|
273
|
+
cutCopyIndicatorVisible: {
|
|
274
|
+
type: BooleanConstructor;
|
|
275
|
+
};
|
|
276
|
+
cutCopyIndicatorBorderColor: {
|
|
277
|
+
type: StringConstructor;
|
|
278
|
+
};
|
|
279
|
+
copyPasteHeaderOptions: {
|
|
280
|
+
type: PropType<GC.Spread.Sheets.CopyPasteHeaderOptions>;
|
|
281
|
+
};
|
|
282
|
+
defaultDragFillType: {
|
|
283
|
+
type: PropType<GC.Spread.Sheets.Fill.AutoFillType>;
|
|
284
|
+
};
|
|
285
|
+
enableFormulaTextbox: {
|
|
286
|
+
type: BooleanConstructor;
|
|
287
|
+
};
|
|
288
|
+
hideSelection: {
|
|
289
|
+
type: BooleanConstructor;
|
|
290
|
+
};
|
|
291
|
+
resizeZeroIndicator: {
|
|
292
|
+
type: PropType<GC.Spread.Sheets.ResizeZeroIndicator>;
|
|
293
|
+
};
|
|
294
|
+
showDragFillSmartTag: {
|
|
295
|
+
type: BooleanConstructor;
|
|
296
|
+
};
|
|
297
|
+
scrollbarShowMax: {
|
|
298
|
+
type: BooleanConstructor;
|
|
299
|
+
};
|
|
300
|
+
scrollbarMaxAlign: {
|
|
301
|
+
type: BooleanConstructor;
|
|
302
|
+
};
|
|
303
|
+
scrollIgnoreHidden: {
|
|
304
|
+
type: BooleanConstructor;
|
|
305
|
+
};
|
|
306
|
+
showVerticalScrollbar: {
|
|
307
|
+
type: BooleanConstructor;
|
|
308
|
+
};
|
|
309
|
+
showHorizontalScrollbar: {
|
|
310
|
+
type: BooleanConstructor;
|
|
311
|
+
};
|
|
312
|
+
showScrollTip: {
|
|
313
|
+
type: PropType<GC.Spread.Sheets.ShowScrollTip>;
|
|
314
|
+
};
|
|
315
|
+
showResizeTip: {
|
|
316
|
+
type: PropType<GC.Spread.Sheets.ShowResizeTip>;
|
|
317
|
+
};
|
|
318
|
+
showDragDropTip: {
|
|
319
|
+
type: BooleanConstructor;
|
|
320
|
+
};
|
|
321
|
+
showDragFillTip: {
|
|
322
|
+
type: BooleanConstructor;
|
|
323
|
+
};
|
|
324
|
+
useTouchLayout: {
|
|
325
|
+
type: BooleanConstructor;
|
|
326
|
+
};
|
|
327
|
+
}>>, {
|
|
328
|
+
allowUserDragDrop: boolean;
|
|
329
|
+
allowUserDragFill: boolean;
|
|
330
|
+
allowUserZoom: boolean;
|
|
331
|
+
allowUserResize: boolean;
|
|
332
|
+
allowUndo: boolean;
|
|
333
|
+
allowSheetReorder: boolean;
|
|
334
|
+
allowContextMenu: boolean;
|
|
335
|
+
allowUserDeselect: boolean;
|
|
336
|
+
showDragFillSmartTag: boolean;
|
|
337
|
+
showHorizontalScrollbar: boolean;
|
|
338
|
+
showVerticalScrollbar: boolean;
|
|
339
|
+
scrollbarShowMax: boolean;
|
|
340
|
+
scrollbarMaxAlign: boolean;
|
|
341
|
+
tabStripVisible: boolean;
|
|
342
|
+
tabEditable: boolean;
|
|
343
|
+
newTabVisible: boolean;
|
|
344
|
+
cutCopyIndicatorVisible: boolean;
|
|
345
|
+
tabNavigationVisible: boolean;
|
|
346
|
+
showDragDropTip: boolean;
|
|
347
|
+
showDragFillTip: boolean;
|
|
348
|
+
scrollIgnoreHidden: boolean;
|
|
349
|
+
highlightInvalidData: boolean;
|
|
350
|
+
useTouchLayout: boolean;
|
|
351
|
+
hideSelection: boolean;
|
|
352
|
+
allowUserEditFormula: boolean;
|
|
353
|
+
enableFormulaTextbox: boolean;
|
|
354
|
+
allowCopyPasteExcelStyle: boolean;
|
|
355
|
+
allowExtendPasteRange: boolean;
|
|
356
|
+
allowUserDragMerge: boolean;
|
|
357
|
+
}, {}>;
|
|
358
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
import GC from '@grapecity-software/spread-sheets';
|
|
2
|
+
import type { PropType } from "vue";
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
frozenColumnCount: {
|
|
5
|
+
type: NumberConstructor;
|
|
6
|
+
};
|
|
7
|
+
frozenRowCount: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
};
|
|
10
|
+
frozenTrailingColumnCount: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
};
|
|
13
|
+
frozenTrailingRowCount: {
|
|
14
|
+
type: NumberConstructor;
|
|
15
|
+
};
|
|
16
|
+
zoom: {
|
|
17
|
+
type: NumberConstructor;
|
|
18
|
+
};
|
|
19
|
+
selectionPolicy: {
|
|
20
|
+
type: PropType<GC.Spread.Sheets.SelectionPolicy>;
|
|
21
|
+
};
|
|
22
|
+
selectionUnit: {
|
|
23
|
+
type: PropType<GC.Spread.Sheets.SelectionUnit>;
|
|
24
|
+
};
|
|
25
|
+
name: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
};
|
|
28
|
+
currentTheme: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
};
|
|
31
|
+
showRowOutline: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
};
|
|
34
|
+
showColumnOutline: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
};
|
|
37
|
+
autoGenerateColumns: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
};
|
|
40
|
+
allowCellOverflow: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
};
|
|
43
|
+
frozenlineColor: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
};
|
|
46
|
+
sheetTabColor: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
};
|
|
49
|
+
clipBoardOptions: {
|
|
50
|
+
type: PropType<GC.Spread.Sheets.ClipboardPasteOptions>;
|
|
51
|
+
};
|
|
52
|
+
rowHeaderAutoText: {
|
|
53
|
+
type: PropType<GC.Spread.Sheets.HeaderAutoText>;
|
|
54
|
+
};
|
|
55
|
+
rowHeaderVisible: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
};
|
|
58
|
+
isProtected: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
};
|
|
61
|
+
selectionBackColor: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
};
|
|
64
|
+
selectionBorderColor: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
};
|
|
67
|
+
rowHeaderAutoTextIndex: {
|
|
68
|
+
type: PropType<GC.Spread.Sheets.HeaderAutoText>;
|
|
69
|
+
};
|
|
70
|
+
dataSource: {
|
|
71
|
+
type: ObjectConstructor;
|
|
72
|
+
};
|
|
73
|
+
rowCount: {
|
|
74
|
+
type: NumberConstructor;
|
|
75
|
+
};
|
|
76
|
+
colCount: {
|
|
77
|
+
type: NumberConstructor;
|
|
78
|
+
};
|
|
79
|
+
defaultStyle: {
|
|
80
|
+
type: ObjectConstructor;
|
|
81
|
+
};
|
|
82
|
+
columnHeaderVisible: {
|
|
83
|
+
type: BooleanConstructor;
|
|
84
|
+
};
|
|
85
|
+
columnHeaderAutoText: {
|
|
86
|
+
type: PropType<GC.Spread.Sheets.HeaderAutoText>;
|
|
87
|
+
};
|
|
88
|
+
columnHeaderAutoTextIndex: {
|
|
89
|
+
type: PropType<GC.Spread.Sheets.HeaderAutoText>;
|
|
90
|
+
};
|
|
91
|
+
rowOutlineInfo: {
|
|
92
|
+
type: ObjectConstructor;
|
|
93
|
+
};
|
|
94
|
+
columnOutlineInfo: {
|
|
95
|
+
type: ObjectConstructor;
|
|
96
|
+
};
|
|
97
|
+
}, {
|
|
98
|
+
props: import("@vue/shared").LooseRequired<{
|
|
99
|
+
readonly showRowOutline: boolean;
|
|
100
|
+
readonly showColumnOutline: boolean;
|
|
101
|
+
readonly autoGenerateColumns: boolean;
|
|
102
|
+
readonly allowCellOverflow: boolean;
|
|
103
|
+
readonly rowHeaderVisible: boolean;
|
|
104
|
+
readonly isProtected: boolean;
|
|
105
|
+
readonly columnHeaderVisible: boolean;
|
|
106
|
+
readonly frozenColumnCount?: number | undefined;
|
|
107
|
+
readonly frozenRowCount?: number | undefined;
|
|
108
|
+
readonly frozenTrailingColumnCount?: number | undefined;
|
|
109
|
+
readonly frozenTrailingRowCount?: number | undefined;
|
|
110
|
+
readonly zoom?: number | undefined;
|
|
111
|
+
readonly selectionPolicy?: GC.Spread.Sheets.SelectionPolicy | undefined;
|
|
112
|
+
readonly selectionUnit?: GC.Spread.Sheets.SelectionUnit | undefined;
|
|
113
|
+
readonly name?: string | undefined;
|
|
114
|
+
readonly currentTheme?: string | undefined;
|
|
115
|
+
readonly frozenlineColor?: string | undefined;
|
|
116
|
+
readonly sheetTabColor?: string | undefined;
|
|
117
|
+
readonly clipBoardOptions?: GC.Spread.Sheets.ClipboardPasteOptions | undefined;
|
|
118
|
+
readonly rowHeaderAutoText?: GC.Spread.Sheets.HeaderAutoText | undefined;
|
|
119
|
+
readonly selectionBackColor?: string | undefined;
|
|
120
|
+
readonly selectionBorderColor?: string | undefined;
|
|
121
|
+
readonly rowHeaderAutoTextIndex?: GC.Spread.Sheets.HeaderAutoText | undefined;
|
|
122
|
+
readonly dataSource?: Record<string, any> | undefined;
|
|
123
|
+
readonly rowCount?: number | undefined;
|
|
124
|
+
readonly colCount?: number | undefined;
|
|
125
|
+
readonly defaultStyle?: Record<string, any> | undefined;
|
|
126
|
+
readonly columnHeaderAutoText?: GC.Spread.Sheets.HeaderAutoText | undefined;
|
|
127
|
+
readonly columnHeaderAutoTextIndex?: GC.Spread.Sheets.HeaderAutoText | undefined;
|
|
128
|
+
readonly rowOutlineInfo?: Record<string, any> | undefined;
|
|
129
|
+
readonly columnOutlineInfo?: Record<string, any> | undefined;
|
|
130
|
+
} & {}>;
|
|
131
|
+
getColCount: () => number;
|
|
132
|
+
initSheet: () => void;
|
|
133
|
+
getSheetIndex: () => number;
|
|
134
|
+
initSheetOptions: () => void;
|
|
135
|
+
setSheetOptionsAfterSheetInit: () => void;
|
|
136
|
+
setSheetOptions: (attr: any, value: any) => void;
|
|
137
|
+
reSizeSheet: () => void;
|
|
138
|
+
dataSourceChangeHandle: (attr: string, value: any) => void;
|
|
139
|
+
rowCountChangeHandle: () => void;
|
|
140
|
+
getSlotsCount: () => number;
|
|
141
|
+
getChildrenCount: () => number;
|
|
142
|
+
updateChildren: () => void;
|
|
143
|
+
colCountChangeHandle: () => void;
|
|
144
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
145
|
+
frozenColumnCount: {
|
|
146
|
+
type: NumberConstructor;
|
|
147
|
+
};
|
|
148
|
+
frozenRowCount: {
|
|
149
|
+
type: NumberConstructor;
|
|
150
|
+
};
|
|
151
|
+
frozenTrailingColumnCount: {
|
|
152
|
+
type: NumberConstructor;
|
|
153
|
+
};
|
|
154
|
+
frozenTrailingRowCount: {
|
|
155
|
+
type: NumberConstructor;
|
|
156
|
+
};
|
|
157
|
+
zoom: {
|
|
158
|
+
type: NumberConstructor;
|
|
159
|
+
};
|
|
160
|
+
selectionPolicy: {
|
|
161
|
+
type: PropType<GC.Spread.Sheets.SelectionPolicy>;
|
|
162
|
+
};
|
|
163
|
+
selectionUnit: {
|
|
164
|
+
type: PropType<GC.Spread.Sheets.SelectionUnit>;
|
|
165
|
+
};
|
|
166
|
+
name: {
|
|
167
|
+
type: StringConstructor;
|
|
168
|
+
};
|
|
169
|
+
currentTheme: {
|
|
170
|
+
type: StringConstructor;
|
|
171
|
+
};
|
|
172
|
+
showRowOutline: {
|
|
173
|
+
type: BooleanConstructor;
|
|
174
|
+
};
|
|
175
|
+
showColumnOutline: {
|
|
176
|
+
type: BooleanConstructor;
|
|
177
|
+
};
|
|
178
|
+
autoGenerateColumns: {
|
|
179
|
+
type: BooleanConstructor;
|
|
180
|
+
};
|
|
181
|
+
allowCellOverflow: {
|
|
182
|
+
type: BooleanConstructor;
|
|
183
|
+
};
|
|
184
|
+
frozenlineColor: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
};
|
|
187
|
+
sheetTabColor: {
|
|
188
|
+
type: StringConstructor;
|
|
189
|
+
};
|
|
190
|
+
clipBoardOptions: {
|
|
191
|
+
type: PropType<GC.Spread.Sheets.ClipboardPasteOptions>;
|
|
192
|
+
};
|
|
193
|
+
rowHeaderAutoText: {
|
|
194
|
+
type: PropType<GC.Spread.Sheets.HeaderAutoText>;
|
|
195
|
+
};
|
|
196
|
+
rowHeaderVisible: {
|
|
197
|
+
type: BooleanConstructor;
|
|
198
|
+
};
|
|
199
|
+
isProtected: {
|
|
200
|
+
type: BooleanConstructor;
|
|
201
|
+
};
|
|
202
|
+
selectionBackColor: {
|
|
203
|
+
type: StringConstructor;
|
|
204
|
+
};
|
|
205
|
+
selectionBorderColor: {
|
|
206
|
+
type: StringConstructor;
|
|
207
|
+
};
|
|
208
|
+
rowHeaderAutoTextIndex: {
|
|
209
|
+
type: PropType<GC.Spread.Sheets.HeaderAutoText>;
|
|
210
|
+
};
|
|
211
|
+
dataSource: {
|
|
212
|
+
type: ObjectConstructor;
|
|
213
|
+
};
|
|
214
|
+
rowCount: {
|
|
215
|
+
type: NumberConstructor;
|
|
216
|
+
};
|
|
217
|
+
colCount: {
|
|
218
|
+
type: NumberConstructor;
|
|
219
|
+
};
|
|
220
|
+
defaultStyle: {
|
|
221
|
+
type: ObjectConstructor;
|
|
222
|
+
};
|
|
223
|
+
columnHeaderVisible: {
|
|
224
|
+
type: BooleanConstructor;
|
|
225
|
+
};
|
|
226
|
+
columnHeaderAutoText: {
|
|
227
|
+
type: PropType<GC.Spread.Sheets.HeaderAutoText>;
|
|
228
|
+
};
|
|
229
|
+
columnHeaderAutoTextIndex: {
|
|
230
|
+
type: PropType<GC.Spread.Sheets.HeaderAutoText>;
|
|
231
|
+
};
|
|
232
|
+
rowOutlineInfo: {
|
|
233
|
+
type: ObjectConstructor;
|
|
234
|
+
};
|
|
235
|
+
columnOutlineInfo: {
|
|
236
|
+
type: ObjectConstructor;
|
|
237
|
+
};
|
|
238
|
+
}>>, {
|
|
239
|
+
showRowOutline: boolean;
|
|
240
|
+
showColumnOutline: boolean;
|
|
241
|
+
autoGenerateColumns: boolean;
|
|
242
|
+
allowCellOverflow: boolean;
|
|
243
|
+
rowHeaderVisible: boolean;
|
|
244
|
+
isProtected: boolean;
|
|
245
|
+
columnHeaderVisible: boolean;
|
|
246
|
+
}, {}>;
|
|
247
|
+
export default _sfc_main;
|