@dazhicheng/ui 1.4.18 → 1.4.20
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/components/tt-form/src/types.d.ts +2 -1
- package/dist/components/tt-modal/index.d.ts +36 -36
- package/dist/components/tt-modal/src/RenderModal.vue.d.ts +16 -16
- package/dist/components/tt-modal/src/components/ModalWrapper.vue.d.ts +1 -1
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +9 -9
- package/dist/components/tt-part/index.d.ts +6 -6
- package/dist/components/tt-part/index.vue.d.ts +2 -2
- package/dist/components/tt-table/src/Table.vue.d.ts +43 -70
- package/dist/components/tt-table/src/components/TableColumnModal.vue.d.ts +2 -2
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +1 -1
- package/dist/components/tt-table/src/hooks/useCustomColumns.d.ts +5 -0
- package/dist/components/tt-table/src/hooks/useDataSource.d.ts +2 -2
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +28 -28
- package/dist/components/tt-table/src/hooks/useTableForm.d.ts +2 -1
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts +8 -2
- package/dist/components/tt-table/src/props.d.ts +5 -20
- package/dist/components/tt-table/src/types/table.d.ts +11 -5
- package/dist/components/tt-table/src/types/tableForm.d.ts +4 -4
- package/dist/components/tt-table/src/utils/table-api.d.ts +0 -15
- package/dist/components/tt-table/src/utils/table-form-api.d.ts +4 -4
- package/dist/components/types.d.ts +14 -9
- package/dist/index.d.ts +2 -0
- package/dist/index.js +7159 -6854
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ButtonProps, CheckboxProps, CheckboxGroupProps, DatePickerProps, InputProps, InputNumberProps, RadioProps, RadioButtonProps, RadioGroupProps, SwitchProps, TimePickerDefaultProps, SelectV2Props, UploadProps } from 'element-plus';
|
|
1
|
+
import { ButtonProps, CheckboxProps, CheckboxGroupProps, DatePickerProps, InputProps, InputNumberProps, RadioProps, RadioButtonProps, RadioGroupProps, SwitchProps, TimePickerDefaultProps, SelectV2Props, UploadProps, SelectProps } from 'element-plus';
|
|
2
2
|
import { FieldOptions, FormContext, GenericObject } from 'vee-validate';
|
|
3
3
|
import { Component, HtmlHTMLAttributes, MaybeRefOrGetter, Ref } from 'vue';
|
|
4
4
|
import { ZodTypeAny } from 'zod';
|
|
@@ -21,6 +21,7 @@ export interface BaseFormComponentMap {
|
|
|
21
21
|
ElSelectV2: SelectV2Props;
|
|
22
22
|
ElTreeSelect: Record<string, any>;
|
|
23
23
|
ElUpload: UploadProps;
|
|
24
|
+
ElSelect: SelectProps;
|
|
24
25
|
}
|
|
25
26
|
/**
|
|
26
27
|
* 表单组件类型字符串联合类型
|
|
@@ -155,10 +155,6 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
155
155
|
showFooter: boolean;
|
|
156
156
|
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
157
157
|
draggable: boolean;
|
|
158
|
-
modal: boolean;
|
|
159
|
-
trapFocus: boolean;
|
|
160
|
-
openDelay: number;
|
|
161
|
-
closeDelay: number;
|
|
162
158
|
testId: any;
|
|
163
159
|
cancelText: string;
|
|
164
160
|
okText: string;
|
|
@@ -172,11 +168,15 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
172
168
|
};
|
|
173
169
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
174
170
|
isBottom: boolean;
|
|
171
|
+
modal: boolean;
|
|
175
172
|
appendToBody: boolean;
|
|
176
173
|
destroyOnClose: boolean;
|
|
177
174
|
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
178
175
|
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
179
176
|
modalPenetrable: boolean;
|
|
177
|
+
openDelay: number;
|
|
178
|
+
closeDelay: number;
|
|
179
|
+
trapFocus: boolean;
|
|
180
180
|
headerAriaLevel: string;
|
|
181
181
|
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
182
182
|
ariaLevel: string;
|
|
@@ -196,7 +196,6 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
196
196
|
minHeight: any;
|
|
197
197
|
showFooter: boolean;
|
|
198
198
|
draggable: boolean;
|
|
199
|
-
modal: boolean;
|
|
200
199
|
testId: any;
|
|
201
200
|
cancelText: string;
|
|
202
201
|
okText: string;
|
|
@@ -210,6 +209,7 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
210
209
|
};
|
|
211
210
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
212
211
|
isBottom: boolean;
|
|
212
|
+
modal: boolean;
|
|
213
213
|
}> & Omit<{
|
|
214
214
|
readonly title: any;
|
|
215
215
|
readonly fullscreen: boolean;
|
|
@@ -221,7 +221,6 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
221
221
|
readonly minHeight: any;
|
|
222
222
|
readonly showFooter: boolean;
|
|
223
223
|
readonly draggable: boolean;
|
|
224
|
-
readonly modal: boolean;
|
|
225
224
|
readonly testId: any;
|
|
226
225
|
readonly cancelText: string;
|
|
227
226
|
readonly okText: string;
|
|
@@ -235,12 +234,13 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
235
234
|
};
|
|
236
235
|
readonly cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
237
236
|
readonly isBottom: boolean;
|
|
237
|
+
readonly modal: boolean;
|
|
238
238
|
readonly top?: string | undefined;
|
|
239
239
|
readonly width?: string | number | undefined;
|
|
240
240
|
readonly closeFunc?: (() => Promise<boolean>) | undefined;
|
|
241
241
|
readonly loadingTip?: string | undefined;
|
|
242
242
|
readonly "onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
243
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "
|
|
243
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal">;
|
|
244
244
|
$attrs: {
|
|
245
245
|
[x: string]: unknown;
|
|
246
246
|
};
|
|
@@ -360,7 +360,6 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
360
360
|
minHeight: any;
|
|
361
361
|
showFooter: boolean;
|
|
362
362
|
draggable: boolean;
|
|
363
|
-
modal: boolean;
|
|
364
363
|
testId: any;
|
|
365
364
|
cancelText: string;
|
|
366
365
|
okText: string;
|
|
@@ -374,6 +373,7 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
374
373
|
};
|
|
375
374
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
376
375
|
isBottom: boolean;
|
|
376
|
+
modal: boolean;
|
|
377
377
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
378
378
|
beforeCreate?: (() => void) | (() => void)[];
|
|
379
379
|
created?: (() => void) | (() => void)[];
|
|
@@ -405,7 +405,6 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
405
405
|
minHeight: any;
|
|
406
406
|
showFooter: boolean;
|
|
407
407
|
draggable: boolean;
|
|
408
|
-
modal: boolean;
|
|
409
408
|
testId: any;
|
|
410
409
|
cancelText: string;
|
|
411
410
|
okText: string;
|
|
@@ -419,6 +418,7 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
419
418
|
};
|
|
420
419
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
421
420
|
isBottom: boolean;
|
|
421
|
+
modal: boolean;
|
|
422
422
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
423
423
|
testId: any;
|
|
424
424
|
visible: {
|
|
@@ -506,7 +506,7 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
506
506
|
};
|
|
507
507
|
}>> & Readonly<{
|
|
508
508
|
"onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
509
|
-
}>, "onScrollBottom" | "elm" | ("title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "
|
|
509
|
+
}>, "onScrollBottom" | "elm" | ("title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal")> & import('vue').ShallowUnwrapRef<{
|
|
510
510
|
onScrollBottom: () => void;
|
|
511
511
|
elm: import('vue').Ref<any, any>;
|
|
512
512
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -673,10 +673,6 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
673
673
|
showFooter: boolean;
|
|
674
674
|
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
675
675
|
draggable: boolean;
|
|
676
|
-
modal: boolean;
|
|
677
|
-
trapFocus: boolean;
|
|
678
|
-
openDelay: number;
|
|
679
|
-
closeDelay: number;
|
|
680
676
|
testId: any;
|
|
681
677
|
cancelText: string;
|
|
682
678
|
okText: string;
|
|
@@ -690,11 +686,15 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
690
686
|
};
|
|
691
687
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
692
688
|
isBottom: boolean;
|
|
689
|
+
modal: boolean;
|
|
693
690
|
appendToBody: boolean;
|
|
694
691
|
destroyOnClose: boolean;
|
|
695
692
|
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
696
693
|
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
697
694
|
modalPenetrable: boolean;
|
|
695
|
+
openDelay: number;
|
|
696
|
+
closeDelay: number;
|
|
697
|
+
trapFocus: boolean;
|
|
698
698
|
headerAriaLevel: string;
|
|
699
699
|
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
700
700
|
ariaLevel: string;
|
|
@@ -859,10 +859,6 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
859
859
|
showFooter: boolean;
|
|
860
860
|
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
861
861
|
draggable: boolean;
|
|
862
|
-
modal: boolean;
|
|
863
|
-
trapFocus: boolean;
|
|
864
|
-
openDelay: number;
|
|
865
|
-
closeDelay: number;
|
|
866
862
|
testId: any;
|
|
867
863
|
cancelText: string;
|
|
868
864
|
okText: string;
|
|
@@ -876,11 +872,15 @@ export declare const RenderModal: import('../../../../utils/src').SFCWithInstall
|
|
|
876
872
|
};
|
|
877
873
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
878
874
|
isBottom: boolean;
|
|
875
|
+
modal: boolean;
|
|
879
876
|
appendToBody: boolean;
|
|
880
877
|
destroyOnClose: boolean;
|
|
881
878
|
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
882
879
|
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
883
880
|
modalPenetrable: boolean;
|
|
881
|
+
openDelay: number;
|
|
882
|
+
closeDelay: number;
|
|
883
|
+
trapFocus: boolean;
|
|
884
884
|
headerAriaLevel: string;
|
|
885
885
|
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
886
886
|
ariaLevel: string;
|
|
@@ -1059,10 +1059,6 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1059
1059
|
showFooter: boolean;
|
|
1060
1060
|
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1061
1061
|
draggable: boolean;
|
|
1062
|
-
modal: boolean;
|
|
1063
|
-
trapFocus: boolean;
|
|
1064
|
-
openDelay: number;
|
|
1065
|
-
closeDelay: number;
|
|
1066
1062
|
testId: any;
|
|
1067
1063
|
cancelText: string;
|
|
1068
1064
|
okText: string;
|
|
@@ -1076,11 +1072,15 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1076
1072
|
};
|
|
1077
1073
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
1078
1074
|
isBottom: boolean;
|
|
1075
|
+
modal: boolean;
|
|
1079
1076
|
appendToBody: boolean;
|
|
1080
1077
|
destroyOnClose: boolean;
|
|
1081
1078
|
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1082
1079
|
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1083
1080
|
modalPenetrable: boolean;
|
|
1081
|
+
openDelay: number;
|
|
1082
|
+
closeDelay: number;
|
|
1083
|
+
trapFocus: boolean;
|
|
1084
1084
|
headerAriaLevel: string;
|
|
1085
1085
|
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1086
1086
|
ariaLevel: string;
|
|
@@ -1100,7 +1100,6 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1100
1100
|
minHeight: any;
|
|
1101
1101
|
showFooter: boolean;
|
|
1102
1102
|
draggable: boolean;
|
|
1103
|
-
modal: boolean;
|
|
1104
1103
|
testId: any;
|
|
1105
1104
|
cancelText: string;
|
|
1106
1105
|
okText: string;
|
|
@@ -1114,6 +1113,7 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1114
1113
|
};
|
|
1115
1114
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
1116
1115
|
isBottom: boolean;
|
|
1116
|
+
modal: boolean;
|
|
1117
1117
|
}> & Omit<{
|
|
1118
1118
|
readonly title: any;
|
|
1119
1119
|
readonly fullscreen: boolean;
|
|
@@ -1125,7 +1125,6 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1125
1125
|
readonly minHeight: any;
|
|
1126
1126
|
readonly showFooter: boolean;
|
|
1127
1127
|
readonly draggable: boolean;
|
|
1128
|
-
readonly modal: boolean;
|
|
1129
1128
|
readonly testId: any;
|
|
1130
1129
|
readonly cancelText: string;
|
|
1131
1130
|
readonly okText: string;
|
|
@@ -1139,12 +1138,13 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1139
1138
|
};
|
|
1140
1139
|
readonly cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
1141
1140
|
readonly isBottom: boolean;
|
|
1141
|
+
readonly modal: boolean;
|
|
1142
1142
|
readonly top?: string | undefined;
|
|
1143
1143
|
readonly width?: string | number | undefined;
|
|
1144
1144
|
readonly closeFunc?: (() => Promise<boolean>) | undefined;
|
|
1145
1145
|
readonly loadingTip?: string | undefined;
|
|
1146
1146
|
readonly "onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
1147
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "
|
|
1147
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal">;
|
|
1148
1148
|
$attrs: {
|
|
1149
1149
|
[x: string]: unknown;
|
|
1150
1150
|
};
|
|
@@ -1264,7 +1264,6 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1264
1264
|
minHeight: any;
|
|
1265
1265
|
showFooter: boolean;
|
|
1266
1266
|
draggable: boolean;
|
|
1267
|
-
modal: boolean;
|
|
1268
1267
|
testId: any;
|
|
1269
1268
|
cancelText: string;
|
|
1270
1269
|
okText: string;
|
|
@@ -1278,6 +1277,7 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1278
1277
|
};
|
|
1279
1278
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
1280
1279
|
isBottom: boolean;
|
|
1280
|
+
modal: boolean;
|
|
1281
1281
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1282
1282
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1283
1283
|
created?: (() => void) | (() => void)[];
|
|
@@ -1309,7 +1309,6 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1309
1309
|
minHeight: any;
|
|
1310
1310
|
showFooter: boolean;
|
|
1311
1311
|
draggable: boolean;
|
|
1312
|
-
modal: boolean;
|
|
1313
1312
|
testId: any;
|
|
1314
1313
|
cancelText: string;
|
|
1315
1314
|
okText: string;
|
|
@@ -1323,6 +1322,7 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1323
1322
|
};
|
|
1324
1323
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
1325
1324
|
isBottom: boolean;
|
|
1325
|
+
modal: boolean;
|
|
1326
1326
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
1327
1327
|
testId: any;
|
|
1328
1328
|
visible: {
|
|
@@ -1410,7 +1410,7 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1410
1410
|
};
|
|
1411
1411
|
}>> & Readonly<{
|
|
1412
1412
|
"onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
1413
|
-
}>, "onScrollBottom" | "elm" | ("title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "
|
|
1413
|
+
}>, "onScrollBottom" | "elm" | ("title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal")> & import('vue').ShallowUnwrapRef<{
|
|
1414
1414
|
onScrollBottom: () => void;
|
|
1415
1415
|
elm: import('vue').Ref<any, any>;
|
|
1416
1416
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -1577,10 +1577,6 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1577
1577
|
showFooter: boolean;
|
|
1578
1578
|
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1579
1579
|
draggable: boolean;
|
|
1580
|
-
modal: boolean;
|
|
1581
|
-
trapFocus: boolean;
|
|
1582
|
-
openDelay: number;
|
|
1583
|
-
closeDelay: number;
|
|
1584
1580
|
testId: any;
|
|
1585
1581
|
cancelText: string;
|
|
1586
1582
|
okText: string;
|
|
@@ -1594,11 +1590,15 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1594
1590
|
};
|
|
1595
1591
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
1596
1592
|
isBottom: boolean;
|
|
1593
|
+
modal: boolean;
|
|
1597
1594
|
appendToBody: boolean;
|
|
1598
1595
|
destroyOnClose: boolean;
|
|
1599
1596
|
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1600
1597
|
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1601
1598
|
modalPenetrable: boolean;
|
|
1599
|
+
openDelay: number;
|
|
1600
|
+
closeDelay: number;
|
|
1601
|
+
trapFocus: boolean;
|
|
1602
1602
|
headerAriaLevel: string;
|
|
1603
1603
|
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1604
1604
|
ariaLevel: string;
|
|
@@ -1763,10 +1763,6 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1763
1763
|
showFooter: boolean;
|
|
1764
1764
|
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1765
1765
|
draggable: boolean;
|
|
1766
|
-
modal: boolean;
|
|
1767
|
-
trapFocus: boolean;
|
|
1768
|
-
openDelay: number;
|
|
1769
|
-
closeDelay: number;
|
|
1770
1766
|
testId: any;
|
|
1771
1767
|
cancelText: string;
|
|
1772
1768
|
okText: string;
|
|
@@ -1780,11 +1776,15 @@ export declare const TtModal: import('../../../../utils/src').SFCWithInstall<{
|
|
|
1780
1776
|
};
|
|
1781
1777
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
1782
1778
|
isBottom: boolean;
|
|
1779
|
+
modal: boolean;
|
|
1783
1780
|
appendToBody: boolean;
|
|
1784
1781
|
destroyOnClose: boolean;
|
|
1785
1782
|
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1786
1783
|
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1787
1784
|
modalPenetrable: boolean;
|
|
1785
|
+
openDelay: number;
|
|
1786
|
+
closeDelay: number;
|
|
1787
|
+
trapFocus: boolean;
|
|
1788
1788
|
headerAriaLevel: string;
|
|
1789
1789
|
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1790
1790
|
ariaLevel: string;
|
|
@@ -31,7 +31,6 @@ declare function __VLS_template(): {
|
|
|
31
31
|
minHeight: any;
|
|
32
32
|
showFooter: boolean;
|
|
33
33
|
draggable: boolean;
|
|
34
|
-
modal: boolean;
|
|
35
34
|
testId: any;
|
|
36
35
|
cancelText: string;
|
|
37
36
|
okText: string;
|
|
@@ -45,6 +44,7 @@ declare function __VLS_template(): {
|
|
|
45
44
|
};
|
|
46
45
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
47
46
|
isBottom: boolean;
|
|
47
|
+
modal: boolean;
|
|
48
48
|
}> & Omit<{
|
|
49
49
|
readonly title: any;
|
|
50
50
|
readonly fullscreen: boolean;
|
|
@@ -56,7 +56,6 @@ declare function __VLS_template(): {
|
|
|
56
56
|
readonly minHeight: any;
|
|
57
57
|
readonly showFooter: boolean;
|
|
58
58
|
readonly draggable: boolean;
|
|
59
|
-
readonly modal: boolean;
|
|
60
59
|
readonly testId: any;
|
|
61
60
|
readonly cancelText: string;
|
|
62
61
|
readonly okText: string;
|
|
@@ -70,12 +69,13 @@ declare function __VLS_template(): {
|
|
|
70
69
|
};
|
|
71
70
|
readonly cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
72
71
|
readonly isBottom: boolean;
|
|
72
|
+
readonly modal: boolean;
|
|
73
73
|
readonly top?: string | undefined;
|
|
74
74
|
readonly width?: string | number | undefined;
|
|
75
75
|
readonly closeFunc?: (() => Promise<boolean>) | undefined;
|
|
76
76
|
readonly loadingTip?: string | undefined;
|
|
77
77
|
readonly "onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
78
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "
|
|
78
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal">;
|
|
79
79
|
$attrs: {
|
|
80
80
|
[x: string]: unknown;
|
|
81
81
|
};
|
|
@@ -195,7 +195,6 @@ declare function __VLS_template(): {
|
|
|
195
195
|
minHeight: any;
|
|
196
196
|
showFooter: boolean;
|
|
197
197
|
draggable: boolean;
|
|
198
|
-
modal: boolean;
|
|
199
198
|
testId: any;
|
|
200
199
|
cancelText: string;
|
|
201
200
|
okText: string;
|
|
@@ -209,6 +208,7 @@ declare function __VLS_template(): {
|
|
|
209
208
|
};
|
|
210
209
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
211
210
|
isBottom: boolean;
|
|
211
|
+
modal: boolean;
|
|
212
212
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
213
213
|
beforeCreate?: (() => void) | (() => void)[];
|
|
214
214
|
created?: (() => void) | (() => void)[];
|
|
@@ -240,7 +240,6 @@ declare function __VLS_template(): {
|
|
|
240
240
|
minHeight: any;
|
|
241
241
|
showFooter: boolean;
|
|
242
242
|
draggable: boolean;
|
|
243
|
-
modal: boolean;
|
|
244
243
|
testId: any;
|
|
245
244
|
cancelText: string;
|
|
246
245
|
okText: string;
|
|
@@ -254,6 +253,7 @@ declare function __VLS_template(): {
|
|
|
254
253
|
};
|
|
255
254
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
256
255
|
isBottom: boolean;
|
|
256
|
+
modal: boolean;
|
|
257
257
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
258
258
|
testId: any;
|
|
259
259
|
visible: {
|
|
@@ -341,7 +341,7 @@ declare function __VLS_template(): {
|
|
|
341
341
|
};
|
|
342
342
|
}>> & Readonly<{
|
|
343
343
|
"onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
344
|
-
}>, "onScrollBottom" | "elm" | ("title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "
|
|
344
|
+
}>, "onScrollBottom" | "elm" | ("title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal")> & import('vue').ShallowUnwrapRef<{
|
|
345
345
|
onScrollBottom: () => void;
|
|
346
346
|
elm: import('vue').Ref<any, any>;
|
|
347
347
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -639,10 +639,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
639
639
|
showFooter: boolean;
|
|
640
640
|
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
641
641
|
draggable: boolean;
|
|
642
|
-
modal: boolean;
|
|
643
|
-
trapFocus: boolean;
|
|
644
|
-
openDelay: number;
|
|
645
|
-
closeDelay: number;
|
|
646
642
|
testId: any;
|
|
647
643
|
cancelText: string;
|
|
648
644
|
okText: string;
|
|
@@ -656,11 +652,15 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
656
652
|
};
|
|
657
653
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
658
654
|
isBottom: boolean;
|
|
655
|
+
modal: boolean;
|
|
659
656
|
appendToBody: boolean;
|
|
660
657
|
destroyOnClose: boolean;
|
|
661
658
|
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
662
659
|
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
663
660
|
modalPenetrable: boolean;
|
|
661
|
+
openDelay: number;
|
|
662
|
+
closeDelay: number;
|
|
663
|
+
trapFocus: boolean;
|
|
664
664
|
headerAriaLevel: string;
|
|
665
665
|
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
666
666
|
ariaLevel: string;
|
|
@@ -680,7 +680,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
680
680
|
minHeight: any;
|
|
681
681
|
showFooter: boolean;
|
|
682
682
|
draggable: boolean;
|
|
683
|
-
modal: boolean;
|
|
684
683
|
testId: any;
|
|
685
684
|
cancelText: string;
|
|
686
685
|
okText: string;
|
|
@@ -694,6 +693,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
694
693
|
};
|
|
695
694
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
696
695
|
isBottom: boolean;
|
|
696
|
+
modal: boolean;
|
|
697
697
|
}> & Omit<{
|
|
698
698
|
readonly title: any;
|
|
699
699
|
readonly fullscreen: boolean;
|
|
@@ -705,7 +705,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
705
705
|
readonly minHeight: any;
|
|
706
706
|
readonly showFooter: boolean;
|
|
707
707
|
readonly draggable: boolean;
|
|
708
|
-
readonly modal: boolean;
|
|
709
708
|
readonly testId: any;
|
|
710
709
|
readonly cancelText: string;
|
|
711
710
|
readonly okText: string;
|
|
@@ -719,12 +718,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
719
718
|
};
|
|
720
719
|
readonly cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
721
720
|
readonly isBottom: boolean;
|
|
721
|
+
readonly modal: boolean;
|
|
722
722
|
readonly top?: string | undefined;
|
|
723
723
|
readonly width?: string | number | undefined;
|
|
724
724
|
readonly closeFunc?: (() => Promise<boolean>) | undefined;
|
|
725
725
|
readonly loadingTip?: string | undefined;
|
|
726
726
|
readonly "onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
727
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "
|
|
727
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal">;
|
|
728
728
|
$attrs: {
|
|
729
729
|
[x: string]: unknown;
|
|
730
730
|
};
|
|
@@ -844,7 +844,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
844
844
|
minHeight: any;
|
|
845
845
|
showFooter: boolean;
|
|
846
846
|
draggable: boolean;
|
|
847
|
-
modal: boolean;
|
|
848
847
|
testId: any;
|
|
849
848
|
cancelText: string;
|
|
850
849
|
okText: string;
|
|
@@ -858,6 +857,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
858
857
|
};
|
|
859
858
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
860
859
|
isBottom: boolean;
|
|
860
|
+
modal: boolean;
|
|
861
861
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
862
862
|
beforeCreate?: (() => void) | (() => void)[];
|
|
863
863
|
created?: (() => void) | (() => void)[];
|
|
@@ -889,7 +889,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
889
889
|
minHeight: any;
|
|
890
890
|
showFooter: boolean;
|
|
891
891
|
draggable: boolean;
|
|
892
|
-
modal: boolean;
|
|
893
892
|
testId: any;
|
|
894
893
|
cancelText: string;
|
|
895
894
|
okText: string;
|
|
@@ -903,6 +902,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
903
902
|
};
|
|
904
903
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
905
904
|
isBottom: boolean;
|
|
905
|
+
modal: boolean;
|
|
906
906
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
907
907
|
testId: any;
|
|
908
908
|
visible: {
|
|
@@ -990,7 +990,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
990
990
|
};
|
|
991
991
|
}>> & Readonly<{
|
|
992
992
|
"onIs-scroll"?: ((...args: any[]) => any) | undefined;
|
|
993
|
-
}>, "onScrollBottom" | "elm" | ("title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "
|
|
993
|
+
}>, "onScrollBottom" | "elm" | ("title" | "fullscreen" | "visible" | "size" | "height" | "loading" | "scrollTop" | "minHeight" | "showFooter" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal")> & import('vue').ShallowUnwrapRef<{
|
|
994
994
|
onScrollBottom: () => void;
|
|
995
995
|
elm: import('vue').Ref<any, any>;
|
|
996
996
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -198,7 +198,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
198
198
|
minHeight: any;
|
|
199
199
|
showFooter: boolean;
|
|
200
200
|
draggable: boolean;
|
|
201
|
-
modal: boolean;
|
|
202
201
|
testId: any;
|
|
203
202
|
cancelText: string;
|
|
204
203
|
okText: string;
|
|
@@ -212,6 +211,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
212
211
|
};
|
|
213
212
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
214
213
|
isBottom: boolean;
|
|
214
|
+
modal: boolean;
|
|
215
215
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
216
216
|
wrapperRef: HTMLDivElement;
|
|
217
217
|
}, HTMLDivElement>;
|
|
@@ -21,10 +21,6 @@ export declare function useModalRender<TParentModalProps extends ModalProps = Mo
|
|
|
21
21
|
showFooter: boolean;
|
|
22
22
|
overflow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
23
23
|
draggable: boolean;
|
|
24
|
-
modal: boolean;
|
|
25
|
-
trapFocus: boolean;
|
|
26
|
-
openDelay: number;
|
|
27
|
-
closeDelay: number;
|
|
28
24
|
testId: any;
|
|
29
25
|
cancelText: string;
|
|
30
26
|
okText: string;
|
|
@@ -38,11 +34,15 @@ export declare function useModalRender<TParentModalProps extends ModalProps = Mo
|
|
|
38
34
|
};
|
|
39
35
|
cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
40
36
|
isBottom: boolean;
|
|
37
|
+
modal: boolean;
|
|
41
38
|
appendToBody: boolean;
|
|
42
39
|
destroyOnClose: boolean;
|
|
43
40
|
closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
44
41
|
lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
45
42
|
modalPenetrable: boolean;
|
|
43
|
+
openDelay: number;
|
|
44
|
+
closeDelay: number;
|
|
45
|
+
trapFocus: boolean;
|
|
46
46
|
headerAriaLevel: string;
|
|
47
47
|
alignCenter: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
48
48
|
ariaLevel: string;
|
|
@@ -63,10 +63,6 @@ export declare function useModalRender<TParentModalProps extends ModalProps = Mo
|
|
|
63
63
|
readonly minHeight: any;
|
|
64
64
|
readonly showFooter: boolean;
|
|
65
65
|
readonly draggable: boolean;
|
|
66
|
-
readonly modal: boolean;
|
|
67
|
-
readonly trapFocus: boolean;
|
|
68
|
-
readonly openDelay: number;
|
|
69
|
-
readonly closeDelay: number;
|
|
70
66
|
readonly testId: any;
|
|
71
67
|
readonly cancelText: string;
|
|
72
68
|
readonly okText: string;
|
|
@@ -80,11 +76,15 @@ export declare function useModalRender<TParentModalProps extends ModalProps = Mo
|
|
|
80
76
|
};
|
|
81
77
|
readonly cancelButtonProps: Partial<import('element-plus').ButtonProps>;
|
|
82
78
|
readonly isBottom: boolean;
|
|
79
|
+
readonly modal: boolean;
|
|
83
80
|
readonly appendToBody: boolean;
|
|
84
81
|
readonly destroyOnClose: boolean;
|
|
85
82
|
readonly closeOnClickModal: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
86
83
|
readonly lockScroll: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
87
84
|
readonly modalPenetrable: boolean;
|
|
85
|
+
readonly openDelay: number;
|
|
86
|
+
readonly closeDelay: number;
|
|
87
|
+
readonly trapFocus: boolean;
|
|
88
88
|
readonly headerAriaLevel: string;
|
|
89
89
|
readonly ariaLevel: string;
|
|
90
90
|
readonly zIndex?: number | undefined;
|
|
@@ -105,4 +105,4 @@ export declare function useModalRender<TParentModalProps extends ModalProps = Mo
|
|
|
105
105
|
readonly "onUpdate:visible"?: ((args_0: boolean) => any) | undefined;
|
|
106
106
|
readonly "onVisible-change"?: ((args_0: boolean) => any) | undefined;
|
|
107
107
|
readonly onRegister?: ((args_0: import('../typing').ModalMethods, args_1: string) => any) | undefined;
|
|
108
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "showClose" | "appendTo" | "fullscreen" | "visible" | "transition" | "size" | "center" | "height" | "loading" | "modelValue" | "closeOnPressEscape" | "scrollTop" | "minHeight" | "showFooter" | "overflow" | "draggable" | "
|
|
108
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "showClose" | "appendTo" | "fullscreen" | "visible" | "transition" | "size" | "center" | "height" | "loading" | "modelValue" | "closeOnPressEscape" | "scrollTop" | "minHeight" | "showFooter" | "overflow" | "draggable" | "testId" | "cancelText" | "okText" | "resizer" | "showCancelBtn" | "showOkBtn" | "confirmLoading" | "cancelLoading" | "okButtonProps" | "cancelButtonProps" | "isBottom" | "modal" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "lockScroll" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "alignCenter" | "ariaLevel" | "modalApi"> & Partial<import('element-plus').DialogProps> & {}, import('vue').PublicProps>, TtModalExtendedModalApi];
|
|
@@ -107,12 +107,12 @@ export declare const TtPart: import('../../../../utils/src').SFCWithInstall<{
|
|
|
107
107
|
title: string;
|
|
108
108
|
modelValue: boolean;
|
|
109
109
|
labelWidth: string;
|
|
110
|
-
shadow: boolean;
|
|
111
110
|
headerClass: string;
|
|
112
|
-
colSpan: number;
|
|
113
111
|
isExpand: boolean;
|
|
114
112
|
showExpand: boolean;
|
|
115
113
|
defaultExpand: boolean;
|
|
114
|
+
shadow: boolean;
|
|
115
|
+
colSpan: number;
|
|
116
116
|
colGap: number;
|
|
117
117
|
labelPosition: string;
|
|
118
118
|
segmentClass: string;
|
|
@@ -235,12 +235,12 @@ export declare const TtPart: import('../../../../utils/src').SFCWithInstall<{
|
|
|
235
235
|
title: string;
|
|
236
236
|
modelValue: boolean;
|
|
237
237
|
labelWidth: string;
|
|
238
|
-
shadow: boolean;
|
|
239
238
|
headerClass: string;
|
|
240
|
-
colSpan: number;
|
|
241
239
|
isExpand: boolean;
|
|
242
240
|
showExpand: boolean;
|
|
243
241
|
defaultExpand: boolean;
|
|
242
|
+
shadow: boolean;
|
|
243
|
+
colSpan: number;
|
|
244
244
|
colGap: number;
|
|
245
245
|
labelPosition: string;
|
|
246
246
|
segmentClass: string;
|
|
@@ -361,12 +361,12 @@ export declare const TtPart: import('../../../../utils/src').SFCWithInstall<{
|
|
|
361
361
|
title: string;
|
|
362
362
|
modelValue: boolean;
|
|
363
363
|
labelWidth: string;
|
|
364
|
-
shadow: boolean;
|
|
365
364
|
headerClass: string;
|
|
366
|
-
colSpan: number;
|
|
367
365
|
isExpand: boolean;
|
|
368
366
|
showExpand: boolean;
|
|
369
367
|
defaultExpand: boolean;
|
|
368
|
+
shadow: boolean;
|
|
369
|
+
colSpan: number;
|
|
370
370
|
colGap: number;
|
|
371
371
|
labelPosition: string;
|
|
372
372
|
segmentClass: string;
|