@dazhicheng/ui 1.5.63 → 1.5.65
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.
|
@@ -5,9 +5,13 @@ interface OpenModalParams {
|
|
|
5
5
|
displayFields?: string[];
|
|
6
6
|
disabledColumnField: string[];
|
|
7
7
|
}
|
|
8
|
+
type __VLS_Props = {
|
|
9
|
+
/** 打开方法 */
|
|
10
|
+
openMethod?: () => void;
|
|
11
|
+
};
|
|
8
12
|
/** @param params - 列数据、默认展示字段、禁用字段 */
|
|
9
13
|
declare function openModal({ columns, displayFields, disabledColumnField }: OpenModalParams): void;
|
|
10
|
-
declare const _default: import('vue').DefineComponent<
|
|
14
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
11
15
|
handleSubmit: import('@vueuse/core').PromisifyFn<() => void>;
|
|
12
16
|
openModal: typeof openModal;
|
|
13
17
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -15,12 +19,12 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
15
19
|
checkedModel: string[];
|
|
16
20
|
modalApi: TtModalExtendedModalApi;
|
|
17
21
|
}) => any;
|
|
18
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
22
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
23
|
"onOn-submit"?: ((val: {
|
|
20
24
|
checkedModel: string[];
|
|
21
25
|
modalApi: TtModalExtendedModalApi;
|
|
22
26
|
}) => any) | undefined;
|
|
23
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
27
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
24
28
|
contentRef: HTMLDivElement;
|
|
25
29
|
}, any>;
|
|
26
30
|
export default _default;
|