@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,247 +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;
|
|
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;
|