@grapecity-software/spread-sheets-vue 17.1.7 → 17.1.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/README.md +14 -14
- package/dist/gc.spread.sheets.vue.min.js +1 -1
- package/index.d.ts +3 -3
- package/package.json +24 -24
- package/types/GcColumn/index.d.ts +85 -85
- package/types/GcSpreadSheets/index.d.ts +358 -358
- package/types/GcWorkSheet/index.d.ts +247 -247
|
@@ -1,358 +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;
|
|
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;
|