@dazhicheng/ui 1.5.14 → 1.5.16
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.d.ts +0 -2
- package/dist/index.js +6829 -7169
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/dist/components/tt-part/index.d.ts +0 -398
- package/dist/components/tt-part/index.vue.d.ts +0 -253
- package/dist/components/tt-part/type.d.ts +0 -100
- package/dist/components/tt-part-item/index.d.ts +0 -105
- package/dist/components/tt-part-item/index.vue.d.ts +0 -71
- package/dist/components/tt-part-item/type.d.ts +0 -81
- package/dist/components/tt-validate/index.d.ts +0 -1
- package/dist/components/tt-validate/src/ErrorMessage.d.ts +0 -61
- package/dist/components/tt-validate/src/Field.d.ts +0 -430
- package/dist/components/tt-validate/src/FieldArray.d.ts +0 -47
- package/dist/components/tt-validate/src/Form.d.ts +0 -271
- package/dist/components/tt-validate/src/config.d.ts +0 -14
- package/dist/components/tt-validate/src/defineRule.d.ts +0 -9
- package/dist/components/tt-validate/src/index.d.ts +0 -36
- package/dist/components/tt-validate/src/symbols.d.ts +0 -6
- package/dist/components/tt-validate/src/types/common.d.ts +0 -11
- package/dist/components/tt-validate/src/types/forms.d.ts +0 -280
- package/dist/components/tt-validate/src/types/index.d.ts +0 -3
- package/dist/components/tt-validate/src/types/paths.d.ts +0 -142
- package/dist/components/tt-validate/src/types/shared.d.ts +0 -19
- package/dist/components/tt-validate/src/useField.d.ts +0 -30
- package/dist/components/tt-validate/src/useFieldArray.d.ts +0 -3
- package/dist/components/tt-validate/src/useFieldError.d.ts +0 -5
- package/dist/components/tt-validate/src/useFieldState.d.ts +0 -47
- package/dist/components/tt-validate/src/useFieldValue.d.ts +0 -5
- package/dist/components/tt-validate/src/useForm.d.ts +0 -23
- package/dist/components/tt-validate/src/useFormErrors.d.ts +0 -4
- package/dist/components/tt-validate/src/useFormValues.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsFieldDirty.d.ts +0 -5
- package/dist/components/tt-validate/src/useIsFieldTouched.d.ts +0 -5
- package/dist/components/tt-validate/src/useIsFieldValid.d.ts +0 -5
- package/dist/components/tt-validate/src/useIsFormDirty.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsFormTouched.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsFormValid.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsSubmitting.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsValidating.d.ts +0 -4
- package/dist/components/tt-validate/src/useResetForm.d.ts +0 -2
- package/dist/components/tt-validate/src/useSetFieldError.d.ts +0 -5
- package/dist/components/tt-validate/src/useSetFieldTouched.d.ts +0 -5
- package/dist/components/tt-validate/src/useSetFieldValue.d.ts +0 -5
- package/dist/components/tt-validate/src/useSetFormErrors.d.ts +0 -4
- package/dist/components/tt-validate/src/useSetFormTouched.d.ts +0 -4
- package/dist/components/tt-validate/src/useSetFormValues.d.ts +0 -4
- package/dist/components/tt-validate/src/useSubmitCount.d.ts +0 -4
- package/dist/components/tt-validate/src/useSubmitForm.d.ts +0 -2
- package/dist/components/tt-validate/src/useValidateField.d.ts +0 -6
- package/dist/components/tt-validate/src/useValidateForm.d.ts +0 -5
- package/dist/components/tt-validate/src/utils/assertions.d.ts +0 -54
- package/dist/components/tt-validate/src/utils/common.d.ts +0 -48
- package/dist/components/tt-validate/src/utils/events.d.ts +0 -1
- package/dist/components/tt-validate/src/utils/index.d.ts +0 -5
- package/dist/components/tt-validate/src/utils/rules.d.ts +0 -13
- package/dist/components/tt-validate/src/utils/shared.d.ts +0 -19
- package/dist/components/tt-validate/src/utils/vnode.d.ts +0 -22
- package/dist/components/tt-validate/src/validate.d.ts +0 -21
- package/dist/components/tt-validate/zod/index.d.ts +0 -1
|
@@ -1,398 +0,0 @@
|
|
|
1
|
-
export * from './type';
|
|
2
|
-
export declare const TtPart: import('../../../../utils/src').SFCWithInstall<{
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
4
|
-
modelValue: {
|
|
5
|
-
required: boolean;
|
|
6
|
-
type: BooleanConstructor;
|
|
7
|
-
default: boolean;
|
|
8
|
-
};
|
|
9
|
-
isExpand: {
|
|
10
|
-
required: boolean;
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: null;
|
|
13
|
-
};
|
|
14
|
-
showExpand: {
|
|
15
|
-
required: boolean;
|
|
16
|
-
type: BooleanConstructor;
|
|
17
|
-
default: boolean;
|
|
18
|
-
};
|
|
19
|
-
defaultExpand: {
|
|
20
|
-
required: boolean;
|
|
21
|
-
type: BooleanConstructor;
|
|
22
|
-
default: boolean;
|
|
23
|
-
};
|
|
24
|
-
title: {
|
|
25
|
-
required: boolean;
|
|
26
|
-
type: StringConstructor;
|
|
27
|
-
default: string;
|
|
28
|
-
};
|
|
29
|
-
type: {
|
|
30
|
-
required: boolean;
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: string;
|
|
33
|
-
validator(value: "inline" | "outline" | "none"): boolean;
|
|
34
|
-
};
|
|
35
|
-
shadow: {
|
|
36
|
-
required: boolean;
|
|
37
|
-
type: BooleanConstructor;
|
|
38
|
-
default: null;
|
|
39
|
-
};
|
|
40
|
-
colSpan: {
|
|
41
|
-
required: boolean;
|
|
42
|
-
type: NumberConstructor;
|
|
43
|
-
default: number;
|
|
44
|
-
};
|
|
45
|
-
colGap: {
|
|
46
|
-
required: boolean;
|
|
47
|
-
type: NumberConstructor;
|
|
48
|
-
default: number;
|
|
49
|
-
};
|
|
50
|
-
labelWidth: {
|
|
51
|
-
required: boolean;
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
labelPosition: {
|
|
56
|
-
required: boolean;
|
|
57
|
-
type: StringConstructor;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
segmentClass: {
|
|
61
|
-
required: boolean;
|
|
62
|
-
type: StringConstructor;
|
|
63
|
-
default: string;
|
|
64
|
-
};
|
|
65
|
-
headerClass: {
|
|
66
|
-
required: boolean;
|
|
67
|
-
type: StringConstructor;
|
|
68
|
-
default: string;
|
|
69
|
-
};
|
|
70
|
-
areaClass: {
|
|
71
|
-
required: boolean;
|
|
72
|
-
type: StringConstructor;
|
|
73
|
-
default: string;
|
|
74
|
-
};
|
|
75
|
-
headerBorder: {
|
|
76
|
-
required: boolean;
|
|
77
|
-
type: BooleanConstructor;
|
|
78
|
-
default: boolean;
|
|
79
|
-
};
|
|
80
|
-
iconType: {
|
|
81
|
-
required: boolean;
|
|
82
|
-
type: StringConstructor;
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
iconTextShow: {
|
|
86
|
-
required: boolean;
|
|
87
|
-
type: BooleanConstructor;
|
|
88
|
-
default: boolean;
|
|
89
|
-
};
|
|
90
|
-
showBefore: {
|
|
91
|
-
required: boolean;
|
|
92
|
-
type: BooleanConstructor;
|
|
93
|
-
default: boolean;
|
|
94
|
-
};
|
|
95
|
-
itemType: {
|
|
96
|
-
type: import('vue').PropType<"default" | "border">;
|
|
97
|
-
default: string;
|
|
98
|
-
};
|
|
99
|
-
}>> & Readonly<{
|
|
100
|
-
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
101
|
-
"onUpdate:isExpand"?: ((val: boolean) => any) | undefined;
|
|
102
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
103
|
-
"update:modelValue": (val: boolean) => any;
|
|
104
|
-
"update:isExpand": (val: boolean) => any;
|
|
105
|
-
}, import('vue').PublicProps, {
|
|
106
|
-
type: string;
|
|
107
|
-
title: string;
|
|
108
|
-
modelValue: boolean;
|
|
109
|
-
labelWidth: string;
|
|
110
|
-
headerClass: string;
|
|
111
|
-
isExpand: boolean;
|
|
112
|
-
showExpand: boolean;
|
|
113
|
-
defaultExpand: boolean;
|
|
114
|
-
shadow: boolean;
|
|
115
|
-
colSpan: number;
|
|
116
|
-
colGap: number;
|
|
117
|
-
labelPosition: string;
|
|
118
|
-
segmentClass: string;
|
|
119
|
-
areaClass: string;
|
|
120
|
-
headerBorder: boolean;
|
|
121
|
-
iconType: string;
|
|
122
|
-
iconTextShow: boolean;
|
|
123
|
-
showBefore: boolean;
|
|
124
|
-
itemType: "default" | "border";
|
|
125
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
126
|
-
segmentRef: HTMLDivElement;
|
|
127
|
-
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
128
|
-
P: {};
|
|
129
|
-
B: {};
|
|
130
|
-
D: {};
|
|
131
|
-
C: {};
|
|
132
|
-
M: {};
|
|
133
|
-
Defaults: {};
|
|
134
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
135
|
-
modelValue: {
|
|
136
|
-
required: boolean;
|
|
137
|
-
type: BooleanConstructor;
|
|
138
|
-
default: boolean;
|
|
139
|
-
};
|
|
140
|
-
isExpand: {
|
|
141
|
-
required: boolean;
|
|
142
|
-
type: BooleanConstructor;
|
|
143
|
-
default: null;
|
|
144
|
-
};
|
|
145
|
-
showExpand: {
|
|
146
|
-
required: boolean;
|
|
147
|
-
type: BooleanConstructor;
|
|
148
|
-
default: boolean;
|
|
149
|
-
};
|
|
150
|
-
defaultExpand: {
|
|
151
|
-
required: boolean;
|
|
152
|
-
type: BooleanConstructor;
|
|
153
|
-
default: boolean;
|
|
154
|
-
};
|
|
155
|
-
title: {
|
|
156
|
-
required: boolean;
|
|
157
|
-
type: StringConstructor;
|
|
158
|
-
default: string;
|
|
159
|
-
};
|
|
160
|
-
type: {
|
|
161
|
-
required: boolean;
|
|
162
|
-
type: StringConstructor;
|
|
163
|
-
default: string;
|
|
164
|
-
validator(value: "inline" | "outline" | "none"): boolean;
|
|
165
|
-
};
|
|
166
|
-
shadow: {
|
|
167
|
-
required: boolean;
|
|
168
|
-
type: BooleanConstructor;
|
|
169
|
-
default: null;
|
|
170
|
-
};
|
|
171
|
-
colSpan: {
|
|
172
|
-
required: boolean;
|
|
173
|
-
type: NumberConstructor;
|
|
174
|
-
default: number;
|
|
175
|
-
};
|
|
176
|
-
colGap: {
|
|
177
|
-
required: boolean;
|
|
178
|
-
type: NumberConstructor;
|
|
179
|
-
default: number;
|
|
180
|
-
};
|
|
181
|
-
labelWidth: {
|
|
182
|
-
required: boolean;
|
|
183
|
-
type: StringConstructor;
|
|
184
|
-
default: string;
|
|
185
|
-
};
|
|
186
|
-
labelPosition: {
|
|
187
|
-
required: boolean;
|
|
188
|
-
type: StringConstructor;
|
|
189
|
-
default: string;
|
|
190
|
-
};
|
|
191
|
-
segmentClass: {
|
|
192
|
-
required: boolean;
|
|
193
|
-
type: StringConstructor;
|
|
194
|
-
default: string;
|
|
195
|
-
};
|
|
196
|
-
headerClass: {
|
|
197
|
-
required: boolean;
|
|
198
|
-
type: StringConstructor;
|
|
199
|
-
default: string;
|
|
200
|
-
};
|
|
201
|
-
areaClass: {
|
|
202
|
-
required: boolean;
|
|
203
|
-
type: StringConstructor;
|
|
204
|
-
default: string;
|
|
205
|
-
};
|
|
206
|
-
headerBorder: {
|
|
207
|
-
required: boolean;
|
|
208
|
-
type: BooleanConstructor;
|
|
209
|
-
default: boolean;
|
|
210
|
-
};
|
|
211
|
-
iconType: {
|
|
212
|
-
required: boolean;
|
|
213
|
-
type: StringConstructor;
|
|
214
|
-
default: string;
|
|
215
|
-
};
|
|
216
|
-
iconTextShow: {
|
|
217
|
-
required: boolean;
|
|
218
|
-
type: BooleanConstructor;
|
|
219
|
-
default: boolean;
|
|
220
|
-
};
|
|
221
|
-
showBefore: {
|
|
222
|
-
required: boolean;
|
|
223
|
-
type: BooleanConstructor;
|
|
224
|
-
default: boolean;
|
|
225
|
-
};
|
|
226
|
-
itemType: {
|
|
227
|
-
type: import('vue').PropType<"default" | "border">;
|
|
228
|
-
default: string;
|
|
229
|
-
};
|
|
230
|
-
}>> & Readonly<{
|
|
231
|
-
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
232
|
-
"onUpdate:isExpand"?: ((val: boolean) => any) | undefined;
|
|
233
|
-
}>, {}, {}, {}, {}, {
|
|
234
|
-
type: string;
|
|
235
|
-
title: string;
|
|
236
|
-
modelValue: boolean;
|
|
237
|
-
labelWidth: string;
|
|
238
|
-
headerClass: string;
|
|
239
|
-
isExpand: boolean;
|
|
240
|
-
showExpand: boolean;
|
|
241
|
-
defaultExpand: boolean;
|
|
242
|
-
shadow: boolean;
|
|
243
|
-
colSpan: number;
|
|
244
|
-
colGap: number;
|
|
245
|
-
labelPosition: string;
|
|
246
|
-
segmentClass: string;
|
|
247
|
-
areaClass: string;
|
|
248
|
-
headerBorder: boolean;
|
|
249
|
-
iconType: string;
|
|
250
|
-
iconTextShow: boolean;
|
|
251
|
-
showBefore: boolean;
|
|
252
|
-
itemType: "default" | "border";
|
|
253
|
-
}>;
|
|
254
|
-
__isFragment?: never;
|
|
255
|
-
__isTeleport?: never;
|
|
256
|
-
__isSuspense?: never;
|
|
257
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
258
|
-
modelValue: {
|
|
259
|
-
required: boolean;
|
|
260
|
-
type: BooleanConstructor;
|
|
261
|
-
default: boolean;
|
|
262
|
-
};
|
|
263
|
-
isExpand: {
|
|
264
|
-
required: boolean;
|
|
265
|
-
type: BooleanConstructor;
|
|
266
|
-
default: null;
|
|
267
|
-
};
|
|
268
|
-
showExpand: {
|
|
269
|
-
required: boolean;
|
|
270
|
-
type: BooleanConstructor;
|
|
271
|
-
default: boolean;
|
|
272
|
-
};
|
|
273
|
-
defaultExpand: {
|
|
274
|
-
required: boolean;
|
|
275
|
-
type: BooleanConstructor;
|
|
276
|
-
default: boolean;
|
|
277
|
-
};
|
|
278
|
-
title: {
|
|
279
|
-
required: boolean;
|
|
280
|
-
type: StringConstructor;
|
|
281
|
-
default: string;
|
|
282
|
-
};
|
|
283
|
-
type: {
|
|
284
|
-
required: boolean;
|
|
285
|
-
type: StringConstructor;
|
|
286
|
-
default: string;
|
|
287
|
-
validator(value: "inline" | "outline" | "none"): boolean;
|
|
288
|
-
};
|
|
289
|
-
shadow: {
|
|
290
|
-
required: boolean;
|
|
291
|
-
type: BooleanConstructor;
|
|
292
|
-
default: null;
|
|
293
|
-
};
|
|
294
|
-
colSpan: {
|
|
295
|
-
required: boolean;
|
|
296
|
-
type: NumberConstructor;
|
|
297
|
-
default: number;
|
|
298
|
-
};
|
|
299
|
-
colGap: {
|
|
300
|
-
required: boolean;
|
|
301
|
-
type: NumberConstructor;
|
|
302
|
-
default: number;
|
|
303
|
-
};
|
|
304
|
-
labelWidth: {
|
|
305
|
-
required: boolean;
|
|
306
|
-
type: StringConstructor;
|
|
307
|
-
default: string;
|
|
308
|
-
};
|
|
309
|
-
labelPosition: {
|
|
310
|
-
required: boolean;
|
|
311
|
-
type: StringConstructor;
|
|
312
|
-
default: string;
|
|
313
|
-
};
|
|
314
|
-
segmentClass: {
|
|
315
|
-
required: boolean;
|
|
316
|
-
type: StringConstructor;
|
|
317
|
-
default: string;
|
|
318
|
-
};
|
|
319
|
-
headerClass: {
|
|
320
|
-
required: boolean;
|
|
321
|
-
type: StringConstructor;
|
|
322
|
-
default: string;
|
|
323
|
-
};
|
|
324
|
-
areaClass: {
|
|
325
|
-
required: boolean;
|
|
326
|
-
type: StringConstructor;
|
|
327
|
-
default: string;
|
|
328
|
-
};
|
|
329
|
-
headerBorder: {
|
|
330
|
-
required: boolean;
|
|
331
|
-
type: BooleanConstructor;
|
|
332
|
-
default: boolean;
|
|
333
|
-
};
|
|
334
|
-
iconType: {
|
|
335
|
-
required: boolean;
|
|
336
|
-
type: StringConstructor;
|
|
337
|
-
default: string;
|
|
338
|
-
};
|
|
339
|
-
iconTextShow: {
|
|
340
|
-
required: boolean;
|
|
341
|
-
type: BooleanConstructor;
|
|
342
|
-
default: boolean;
|
|
343
|
-
};
|
|
344
|
-
showBefore: {
|
|
345
|
-
required: boolean;
|
|
346
|
-
type: BooleanConstructor;
|
|
347
|
-
default: boolean;
|
|
348
|
-
};
|
|
349
|
-
itemType: {
|
|
350
|
-
type: import('vue').PropType<"default" | "border">;
|
|
351
|
-
default: string;
|
|
352
|
-
};
|
|
353
|
-
}>> & Readonly<{
|
|
354
|
-
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
355
|
-
"onUpdate:isExpand"?: ((val: boolean) => any) | undefined;
|
|
356
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
357
|
-
"update:modelValue": (val: boolean) => any;
|
|
358
|
-
"update:isExpand": (val: boolean) => any;
|
|
359
|
-
}, string, {
|
|
360
|
-
type: string;
|
|
361
|
-
title: string;
|
|
362
|
-
modelValue: boolean;
|
|
363
|
-
labelWidth: string;
|
|
364
|
-
headerClass: string;
|
|
365
|
-
isExpand: boolean;
|
|
366
|
-
showExpand: boolean;
|
|
367
|
-
defaultExpand: boolean;
|
|
368
|
-
shadow: boolean;
|
|
369
|
-
colSpan: number;
|
|
370
|
-
colGap: number;
|
|
371
|
-
labelPosition: string;
|
|
372
|
-
segmentClass: string;
|
|
373
|
-
areaClass: string;
|
|
374
|
-
headerBorder: boolean;
|
|
375
|
-
iconType: string;
|
|
376
|
-
iconTextShow: boolean;
|
|
377
|
-
showBefore: boolean;
|
|
378
|
-
itemType: "default" | "border";
|
|
379
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
380
|
-
$slots: Readonly<{
|
|
381
|
-
default: () => any;
|
|
382
|
-
header: () => any;
|
|
383
|
-
actions: () => any;
|
|
384
|
-
footer: () => any;
|
|
385
|
-
expandIcon: () => any;
|
|
386
|
-
title: () => any;
|
|
387
|
-
titleAfter: () => any;
|
|
388
|
-
}> & {
|
|
389
|
-
default: () => any;
|
|
390
|
-
header: () => any;
|
|
391
|
-
actions: () => any;
|
|
392
|
-
footer: () => any;
|
|
393
|
-
expandIcon: () => any;
|
|
394
|
-
title: () => any;
|
|
395
|
-
titleAfter: () => any;
|
|
396
|
-
};
|
|
397
|
-
})> & Record<string, any>;
|
|
398
|
-
export default TtPart;
|
|
@@ -1,253 +0,0 @@
|
|
|
1
|
-
declare function __VLS_template(): {
|
|
2
|
-
attrs: Partial<{}>;
|
|
3
|
-
slots: Readonly<{
|
|
4
|
-
default: () => any;
|
|
5
|
-
header: () => any;
|
|
6
|
-
actions: () => any;
|
|
7
|
-
footer: () => any;
|
|
8
|
-
expandIcon: () => any;
|
|
9
|
-
title: () => any;
|
|
10
|
-
titleAfter: () => any;
|
|
11
|
-
}> & {
|
|
12
|
-
default: () => any;
|
|
13
|
-
header: () => any;
|
|
14
|
-
actions: () => any;
|
|
15
|
-
footer: () => any;
|
|
16
|
-
expandIcon: () => any;
|
|
17
|
-
title: () => any;
|
|
18
|
-
titleAfter: () => any;
|
|
19
|
-
};
|
|
20
|
-
refs: {
|
|
21
|
-
segmentRef: HTMLDivElement;
|
|
22
|
-
};
|
|
23
|
-
rootEl: HTMLDivElement;
|
|
24
|
-
};
|
|
25
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
26
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
27
|
-
modelValue: {
|
|
28
|
-
required: boolean;
|
|
29
|
-
type: BooleanConstructor;
|
|
30
|
-
default: boolean;
|
|
31
|
-
};
|
|
32
|
-
isExpand: {
|
|
33
|
-
required: boolean;
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
default: null;
|
|
36
|
-
};
|
|
37
|
-
showExpand: {
|
|
38
|
-
required: boolean;
|
|
39
|
-
type: BooleanConstructor;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
|
-
defaultExpand: {
|
|
43
|
-
required: boolean;
|
|
44
|
-
type: BooleanConstructor;
|
|
45
|
-
default: boolean;
|
|
46
|
-
};
|
|
47
|
-
title: {
|
|
48
|
-
required: boolean;
|
|
49
|
-
type: StringConstructor;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
type: {
|
|
53
|
-
required: boolean;
|
|
54
|
-
type: StringConstructor;
|
|
55
|
-
default: string;
|
|
56
|
-
validator(value: "inline" | "outline" | "none"): boolean;
|
|
57
|
-
};
|
|
58
|
-
shadow: {
|
|
59
|
-
required: boolean;
|
|
60
|
-
type: BooleanConstructor;
|
|
61
|
-
default: null;
|
|
62
|
-
};
|
|
63
|
-
colSpan: {
|
|
64
|
-
required: boolean;
|
|
65
|
-
type: NumberConstructor;
|
|
66
|
-
default: number;
|
|
67
|
-
};
|
|
68
|
-
colGap: {
|
|
69
|
-
required: boolean;
|
|
70
|
-
type: NumberConstructor;
|
|
71
|
-
default: number;
|
|
72
|
-
};
|
|
73
|
-
labelWidth: {
|
|
74
|
-
required: boolean;
|
|
75
|
-
type: StringConstructor;
|
|
76
|
-
default: string;
|
|
77
|
-
};
|
|
78
|
-
labelPosition: {
|
|
79
|
-
required: boolean;
|
|
80
|
-
type: StringConstructor;
|
|
81
|
-
default: string;
|
|
82
|
-
};
|
|
83
|
-
segmentClass: {
|
|
84
|
-
required: boolean;
|
|
85
|
-
type: StringConstructor;
|
|
86
|
-
default: string;
|
|
87
|
-
};
|
|
88
|
-
headerClass: {
|
|
89
|
-
required: boolean;
|
|
90
|
-
type: StringConstructor;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
areaClass: {
|
|
94
|
-
required: boolean;
|
|
95
|
-
type: StringConstructor;
|
|
96
|
-
default: string;
|
|
97
|
-
};
|
|
98
|
-
headerBorder: {
|
|
99
|
-
required: boolean;
|
|
100
|
-
type: BooleanConstructor;
|
|
101
|
-
default: boolean;
|
|
102
|
-
};
|
|
103
|
-
iconType: {
|
|
104
|
-
required: boolean;
|
|
105
|
-
type: StringConstructor;
|
|
106
|
-
default: string;
|
|
107
|
-
};
|
|
108
|
-
iconTextShow: {
|
|
109
|
-
required: boolean;
|
|
110
|
-
type: BooleanConstructor;
|
|
111
|
-
default: boolean;
|
|
112
|
-
};
|
|
113
|
-
showBefore: {
|
|
114
|
-
required: boolean;
|
|
115
|
-
type: BooleanConstructor;
|
|
116
|
-
default: boolean;
|
|
117
|
-
};
|
|
118
|
-
itemType: {
|
|
119
|
-
type: import('vue').PropType<"default" | "border">;
|
|
120
|
-
default: string;
|
|
121
|
-
};
|
|
122
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
123
|
-
"update:modelValue": (val: boolean) => any;
|
|
124
|
-
"update:isExpand": (val: boolean) => any;
|
|
125
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
126
|
-
modelValue: {
|
|
127
|
-
required: boolean;
|
|
128
|
-
type: BooleanConstructor;
|
|
129
|
-
default: boolean;
|
|
130
|
-
};
|
|
131
|
-
isExpand: {
|
|
132
|
-
required: boolean;
|
|
133
|
-
type: BooleanConstructor;
|
|
134
|
-
default: null;
|
|
135
|
-
};
|
|
136
|
-
showExpand: {
|
|
137
|
-
required: boolean;
|
|
138
|
-
type: BooleanConstructor;
|
|
139
|
-
default: boolean;
|
|
140
|
-
};
|
|
141
|
-
defaultExpand: {
|
|
142
|
-
required: boolean;
|
|
143
|
-
type: BooleanConstructor;
|
|
144
|
-
default: boolean;
|
|
145
|
-
};
|
|
146
|
-
title: {
|
|
147
|
-
required: boolean;
|
|
148
|
-
type: StringConstructor;
|
|
149
|
-
default: string;
|
|
150
|
-
};
|
|
151
|
-
type: {
|
|
152
|
-
required: boolean;
|
|
153
|
-
type: StringConstructor;
|
|
154
|
-
default: string;
|
|
155
|
-
validator(value: "inline" | "outline" | "none"): boolean;
|
|
156
|
-
};
|
|
157
|
-
shadow: {
|
|
158
|
-
required: boolean;
|
|
159
|
-
type: BooleanConstructor;
|
|
160
|
-
default: null;
|
|
161
|
-
};
|
|
162
|
-
colSpan: {
|
|
163
|
-
required: boolean;
|
|
164
|
-
type: NumberConstructor;
|
|
165
|
-
default: number;
|
|
166
|
-
};
|
|
167
|
-
colGap: {
|
|
168
|
-
required: boolean;
|
|
169
|
-
type: NumberConstructor;
|
|
170
|
-
default: number;
|
|
171
|
-
};
|
|
172
|
-
labelWidth: {
|
|
173
|
-
required: boolean;
|
|
174
|
-
type: StringConstructor;
|
|
175
|
-
default: string;
|
|
176
|
-
};
|
|
177
|
-
labelPosition: {
|
|
178
|
-
required: boolean;
|
|
179
|
-
type: StringConstructor;
|
|
180
|
-
default: string;
|
|
181
|
-
};
|
|
182
|
-
segmentClass: {
|
|
183
|
-
required: boolean;
|
|
184
|
-
type: StringConstructor;
|
|
185
|
-
default: string;
|
|
186
|
-
};
|
|
187
|
-
headerClass: {
|
|
188
|
-
required: boolean;
|
|
189
|
-
type: StringConstructor;
|
|
190
|
-
default: string;
|
|
191
|
-
};
|
|
192
|
-
areaClass: {
|
|
193
|
-
required: boolean;
|
|
194
|
-
type: StringConstructor;
|
|
195
|
-
default: string;
|
|
196
|
-
};
|
|
197
|
-
headerBorder: {
|
|
198
|
-
required: boolean;
|
|
199
|
-
type: BooleanConstructor;
|
|
200
|
-
default: boolean;
|
|
201
|
-
};
|
|
202
|
-
iconType: {
|
|
203
|
-
required: boolean;
|
|
204
|
-
type: StringConstructor;
|
|
205
|
-
default: string;
|
|
206
|
-
};
|
|
207
|
-
iconTextShow: {
|
|
208
|
-
required: boolean;
|
|
209
|
-
type: BooleanConstructor;
|
|
210
|
-
default: boolean;
|
|
211
|
-
};
|
|
212
|
-
showBefore: {
|
|
213
|
-
required: boolean;
|
|
214
|
-
type: BooleanConstructor;
|
|
215
|
-
default: boolean;
|
|
216
|
-
};
|
|
217
|
-
itemType: {
|
|
218
|
-
type: import('vue').PropType<"default" | "border">;
|
|
219
|
-
default: string;
|
|
220
|
-
};
|
|
221
|
-
}>> & Readonly<{
|
|
222
|
-
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
223
|
-
"onUpdate:isExpand"?: ((val: boolean) => any) | undefined;
|
|
224
|
-
}>, {
|
|
225
|
-
type: string;
|
|
226
|
-
title: string;
|
|
227
|
-
modelValue: boolean;
|
|
228
|
-
labelWidth: string;
|
|
229
|
-
headerClass: string;
|
|
230
|
-
isExpand: boolean;
|
|
231
|
-
showExpand: boolean;
|
|
232
|
-
defaultExpand: boolean;
|
|
233
|
-
shadow: boolean;
|
|
234
|
-
colSpan: number;
|
|
235
|
-
colGap: number;
|
|
236
|
-
labelPosition: string;
|
|
237
|
-
segmentClass: string;
|
|
238
|
-
areaClass: string;
|
|
239
|
-
headerBorder: boolean;
|
|
240
|
-
iconType: string;
|
|
241
|
-
iconTextShow: boolean;
|
|
242
|
-
showBefore: boolean;
|
|
243
|
-
itemType: "default" | "border";
|
|
244
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
245
|
-
segmentRef: HTMLDivElement;
|
|
246
|
-
}, HTMLDivElement>;
|
|
247
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
248
|
-
export default _default;
|
|
249
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
250
|
-
new (): {
|
|
251
|
-
$slots: S;
|
|
252
|
-
};
|
|
253
|
-
};
|