easybill-ui 1.4.0 → 1.4.2
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/_virtual/_plugin-vue_export-helper.js +9 -0
- package/dist/assets/easybill-ui.css +1 -0
- package/dist/components/ConstantStatus/index.d.ts +24 -0
- package/dist/components/ConstantStatus/index.js +7 -0
- package/dist/components/ConstantStatus/src/ConstantStatus.vue.d.ts +25 -0
- package/dist/components/ConstantStatus/src/ConstantStatus.vue.js +76 -0
- package/dist/components/ConstantStatus/src/ConstantStatus.vue2.js +4 -0
- package/dist/components/ConstantStatus/src/index.d.ts +3 -0
- package/dist/components/ConstantStatus/src/index.js +5 -0
- package/dist/components/ConstantStatus/src/types.d.ts +18 -0
- package/dist/components/CurdForm/index.d.ts +9 -0
- package/dist/components/CurdForm/index.js +9 -0
- package/dist/components/CurdForm/src/CurdForm.vue.js +7 -0
- package/dist/components/CurdForm/src/CurdForm.vue2.js +326 -0
- package/dist/components/CurdForm/src/CurdFormItem.vue.d.ts +37 -0
- package/dist/components/CurdForm/src/CurdFormItem.vue.js +55 -0
- package/dist/components/CurdForm/src/CurdFormItem.vue2.js +4 -0
- package/dist/components/CurdForm/src/FormItem.vue.d.ts +44 -0
- package/dist/components/CurdForm/src/FormItem.vue.js +128 -0
- package/dist/components/CurdForm/src/FormItem.vue2.js +4 -0
- package/dist/components/CurdForm/src/FormTooltip.vue.d.ts +33 -0
- package/dist/components/CurdForm/src/FormTooltip.vue.js +63 -0
- package/dist/components/CurdForm/src/FormTooltip.vue2.js +4 -0
- package/dist/components/CurdForm/src/components/index.d.ts +10 -0
- package/dist/components/CurdForm/src/components/index.js +38 -0
- package/dist/components/CurdForm/src/components/schema-form-autocomplete.vue.d.ts +56 -0
- package/dist/components/CurdForm/src/components/schema-form-autocomplete.vue.js +39 -0
- package/dist/components/CurdForm/src/components/schema-form-autocomplete.vue2.js +4 -0
- package/dist/components/CurdForm/src/components/schema-form-cascader.vue.d.ts +56 -0
- package/dist/components/CurdForm/src/components/schema-form-cascader.vue.js +32 -0
- package/dist/components/CurdForm/src/components/schema-form-cascader.vue2.js +4 -0
- package/dist/components/CurdForm/src/components/schema-form-checkbox.vue.d.ts +59 -0
- package/dist/components/CurdForm/src/components/schema-form-checkbox.vue.js +86 -0
- package/dist/components/CurdForm/src/components/schema-form-checkbox.vue2.js +33 -0
- package/dist/components/CurdForm/src/components/schema-form-choose.vue.js +217 -0
- package/dist/components/CurdForm/src/components/schema-form-choose.vue2.js +4 -0
- package/dist/components/CurdForm/src/components/schema-form-color-picker.vue.d.ts +54 -0
- package/dist/components/CurdForm/src/components/schema-form-color-picker.vue.js +15 -0
- package/dist/components/CurdForm/src/components/schema-form-color-picker.vue2.js +19 -0
- package/dist/components/CurdForm/src/components/schema-form-date-picker.vue.d.ts +56 -0
- package/dist/components/CurdForm/src/components/schema-form-date-picker.vue.js +32 -0
- package/dist/components/CurdForm/src/components/schema-form-date-picker.vue2.js +27 -0
- package/dist/components/CurdForm/src/components/schema-form-input-number.vue.d.ts +54 -0
- package/dist/components/CurdForm/src/components/schema-form-input-number.vue.js +39 -0
- package/dist/components/CurdForm/src/components/schema-form-input-number.vue2.js +4 -0
- package/dist/components/CurdForm/src/components/schema-form-input.vue.d.ts +54 -0
- package/dist/components/CurdForm/src/components/schema-form-input.vue.js +44 -0
- package/dist/components/CurdForm/src/components/schema-form-input.vue2.js +4 -0
- package/dist/components/CurdForm/src/components/schema-form-radio.vue.d.ts +54 -0
- package/dist/components/CurdForm/src/components/schema-form-radio.vue.js +114 -0
- package/dist/components/CurdForm/src/components/schema-form-radio.vue2.js +4 -0
- package/dist/components/CurdForm/src/components/schema-form-select-v2.vue.d.ts +54 -0
- package/dist/components/CurdForm/src/components/schema-form-select-v2.vue.js +69 -0
- package/dist/components/CurdForm/src/components/schema-form-select-v2.vue2.js +4 -0
- package/dist/components/CurdForm/src/components/schema-form-select.vue.js +65 -0
- package/dist/components/CurdForm/src/components/schema-form-select.vue2.js +66 -0
- package/dist/components/CurdForm/src/components/schema-form-switch.vue.d.ts +54 -0
- package/dist/components/CurdForm/src/components/schema-form-switch.vue.js +14 -0
- package/dist/components/CurdForm/src/components/schema-form-switch.vue2.js +25 -0
- package/dist/components/CurdForm/src/components/schema-form-time-picker.vue.d.ts +57 -0
- package/dist/components/CurdForm/src/components/schema-form-time-picker.vue.js +29 -0
- package/dist/components/CurdForm/src/components/schema-form-time-picker.vue2.js +30 -0
- package/dist/components/CurdForm/src/components/schema-form-tree-select.vue.d.ts +58 -0
- package/dist/components/CurdForm/src/components/schema-form-tree-select.vue.js +55 -0
- package/dist/components/CurdForm/src/components/schema-form-tree-select.vue2.js +31 -0
- package/dist/components/CurdForm/src/components/schema-form-value.vue.d.ts +54 -0
- package/dist/components/CurdForm/src/components/schema-form-value.vue.js +11 -0
- package/dist/components/CurdForm/src/components/schema-form-value.vue2.js +21 -0
- package/dist/components/CurdForm/src/directive/index.d.ts +12 -0
- package/dist/components/CurdForm/src/directive/index.js +32 -0
- package/dist/components/CurdForm/src/hooks/index.d.ts +4 -0
- package/dist/components/CurdForm/src/hooks/index.js +7 -0
- package/dist/components/CurdForm/src/types.d.ts +136 -0
- package/dist/components/CurdForm/src/types.js +27 -0
- package/dist/components/CurdForm/src/utils/ajax.d.ts +25 -0
- package/dist/components/CurdForm/src/utils/common.d.ts +1 -0
- package/dist/components/CurdForm/src/utils/common.js +13 -0
- package/dist/components/CurdGroupForm/index.d.ts +2 -0
- package/dist/components/CurdGroupForm/src/CurdGroupForm.vue.d.ts +36 -0
- package/dist/components/CurdGroupForm/src/CurdGroupForm.vue.js +113 -0
- package/dist/components/CurdGroupForm/src/CurdGroupForm.vue2.js +4 -0
- package/dist/components/CurdGroupForm/src/components/CurdFormGroup.vue.d.ts +52 -0
- package/dist/components/CurdGroupForm/src/components/CurdFormGroup.vue.js +64 -0
- package/dist/components/CurdGroupForm/src/components/CurdFormGroup.vue2.js +4 -0
- package/dist/components/CurdGroupForm/src/hooks/useFormHook.d.ts +12 -0
- package/dist/components/CurdGroupForm/src/hooks/useFormHook.js +32 -0
- package/dist/components/CurdGroupForm/types.d.ts +33 -0
- package/dist/components/CurdTable/index.d.ts +13 -0
- package/dist/components/CurdTable/index.js +7 -0
- package/dist/components/CurdTable/src/CurdTable.vue.js +562 -0
- package/dist/components/CurdTable/src/CurdTable.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableColumnControl.vue.d.ts +21 -0
- package/dist/components/CurdTable/src/STableColumnControl.vue.js +132 -0
- package/dist/components/CurdTable/src/STableColumnControl.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableDetail.vue.d.ts +9 -0
- package/dist/components/CurdTable/src/STableDetail.vue.js +53 -0
- package/dist/components/CurdTable/src/STableDetail.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableFilter.vue.d.ts +28 -0
- package/dist/components/CurdTable/src/STableFilter.vue.js +40 -0
- package/dist/components/CurdTable/src/STableFilter.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableItem.vue.d.ts +127 -0
- package/dist/components/CurdTable/src/STableItem.vue.js +147 -0
- package/dist/components/CurdTable/src/STableItem.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableItemFilter.vue.d.ts +34 -0
- package/dist/components/CurdTable/src/STableItemFilter.vue.js +71 -0
- package/dist/components/CurdTable/src/STableItemFilter.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableItemFormatter.vue.d.ts +38 -0
- package/dist/components/CurdTable/src/STableItemFormatter.vue.js +34 -0
- package/dist/components/CurdTable/src/STableItemFormatter.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableItemHeader.vue.d.ts +16 -0
- package/dist/components/CurdTable/src/STableItemHeader.vue.js +24 -0
- package/dist/components/CurdTable/src/STableItemHeader.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableItemHeaderTooltip.vue.d.ts +14 -0
- package/dist/components/CurdTable/src/STableItemHeaderTooltip.vue.js +48 -0
- package/dist/components/CurdTable/src/STableItemHeaderTooltip.vue2.js +4 -0
- package/dist/components/CurdTable/src/STableMenu.vue.d.ts +20 -0
- package/dist/components/CurdTable/src/STableMenu.vue.js +120 -0
- package/dist/components/CurdTable/src/STableMenu.vue2.js +4 -0
- package/dist/components/CurdTable/src/hooks/useColumnHook.d.ts +9 -0
- package/dist/components/CurdTable/src/hooks/useColumnHook.js +45 -0
- package/dist/components/CurdTable/src/types.d.ts +178 -0
- package/dist/components/CurdTable/utils/common.d.ts +5 -0
- package/dist/components/CurdTable/utils/common.js +18 -0
- package/dist/components/CurdTable/utils/tabelToExcel.d.ts +4 -0
- package/dist/components/CurdTable/utils/tabelToExcel.js +23 -0
- package/dist/components/DetailInfo/index.d.ts +147 -0
- package/dist/components/DetailInfo/index.js +7 -0
- package/dist/components/DetailInfo/src/DetailInfo.vue.d.ts +77 -0
- package/dist/components/DetailInfo/src/DetailInfo.vue.js +144 -0
- package/dist/components/DetailInfo/src/DetailInfo.vue2.js +4 -0
- package/dist/components/DetailInfo/src/DetailInfoContent.vue.d.ts +16 -0
- package/dist/components/DetailInfo/src/DetailInfoContent.vue.js +43 -0
- package/dist/components/DetailInfo/src/DetailInfoContent.vue2.js +4 -0
- package/dist/components/DetailInfo/src/DetailInfoTooltip.vue.d.ts +15 -0
- package/dist/components/DetailInfo/src/DetailInfoTooltip.vue.js +48 -0
- package/dist/components/DetailInfo/src/DetailInfoTooltip.vue2.js +4 -0
- package/dist/components/DetailInfo/src/types.d.ts +22 -0
- package/dist/components/FormDialog/index.d.ts +7 -0
- package/dist/components/FormDialog/index.js +6 -0
- package/dist/components/FormDialog/src/FormDialog.vue.d.ts +247 -0
- package/dist/components/FormDialog/src/FormDialog.vue.js +117 -0
- package/dist/components/FormDialog/src/FormDialog.vue2.js +191 -0
- package/dist/components/FormDialog/src/hooks/index.d.ts +2 -0
- package/dist/components/FormDialog/src/hooks/useStepList.d.ts +14 -0
- package/dist/components/FormDialog/src/hooks/useStepList.js +27 -0
- package/dist/components/FormDialog/src/hooks/useStepNavigation.d.ts +75 -0
- package/dist/components/FormDialog/src/hooks/useStepNavigation.js +34 -0
- package/dist/components/FormDialog/src/index.d.ts +13 -0
- package/dist/components/FormDialog/src/index.js +23 -0
- package/dist/components/FormDialog/src/types.d.ts +63 -0
- package/dist/components/TableFilter/index.d.ts +6 -0
- package/dist/components/TableFilter/index.js +7 -0
- package/dist/components/TableFilter/src/FilterExternal/FilterExternal.vue.js +91 -0
- package/dist/components/TableFilter/src/FilterExternal/FilterExternal.vue2.js +4 -0
- package/dist/components/TableFilter/src/FilterSearchBox.vue.d.ts +33 -0
- package/dist/components/TableFilter/src/FilterSearchBox.vue.js +71 -0
- package/dist/components/TableFilter/src/FilterSearchBox.vue2.js +4 -0
- package/dist/components/TableFilter/src/TableFilter.vue.js +180 -0
- package/dist/components/TableFilter/src/TableFilter.vue2.js +4 -0
- package/dist/components/TableFilter/src/components/FilterItem.vue.d.ts +37 -0
- package/dist/components/TableFilter/src/components/FilterItem.vue.js +63 -0
- package/dist/components/TableFilter/src/components/FilterItem.vue2.js +4 -0
- package/dist/components/TableFilter/src/components/FilterTags.vue.d.ts +114 -0
- package/dist/components/TableFilter/src/components/FilterTags.vue.js +142 -0
- package/dist/components/TableFilter/src/components/FilterTags.vue2.js +4 -0
- package/dist/components/TableFilter/src/components/FilterToggle.vue.d.ts +29 -0
- package/dist/components/TableFilter/src/components/FilterToggle.vue.js +70 -0
- package/dist/components/TableFilter/src/components/FilterToggle.vue2.js +4 -0
- package/dist/components/TableFilter/src/components/FilterType.vue.d.ts +30 -0
- package/dist/components/TableFilter/src/components/FilterType.vue.js +62 -0
- package/dist/components/TableFilter/src/components/FilterType.vue2.js +4 -0
- package/dist/components/TableFilter/src/components/containers/TagsSelect.vue.d.ts +42 -0
- package/dist/components/TableFilter/src/components/containers/TagsSelect.vue.js +99 -0
- package/dist/components/TableFilter/src/components/containers/TagsSelect.vue2.js +4 -0
- package/dist/components/TableFilter/types.d.ts +34 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +35 -0
- package/dist/locale/index.d.ts +9 -0
- package/dist/locale/index.js +6 -0
- package/dist/locale/lang/en.d.ts +49 -0
- package/{locale/lang/en.ts → dist/locale/lang/en.js} +10 -7
- package/dist/locale/lang/zh-cn.d.ts +49 -0
- package/{locale/lang/zh-cn.ts → dist/locale/lang/zh-cn.js} +10 -7
- package/dist/utils/common/index.d.ts +8 -0
- package/dist/utils/common/index.js +13 -0
- package/dist/utils/hooks/useGlobalConfig.d.ts +13 -0
- package/dist/utils/hooks/useGlobalConfig.js +22 -0
- package/dist/utils/hooks/useLocal.d.ts +15 -0
- package/dist/utils/hooks/useLocal.js +33 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.js +6 -0
- package/dist/utils/vue/index.d.ts +2 -0
- package/dist/utils/vue/index.js +4 -0
- package/dist/utils/vue/install.d.ts +2 -0
- package/dist/utils/vue/install.js +14 -0
- package/dist/utils/vue/make-installer.d.ts +5 -0
- package/dist/utils/vue/make-installer.js +9 -0
- package/dist/utils/vue/typescript.d.ts +5 -0
- package/package.json +61 -32
- package/components/ConstantStatus/index.ts +0 -5
- package/components/ConstantStatus/src/ConstantStatus.vue +0 -69
- package/components/ConstantStatus/src/index.ts +0 -3
- package/components/ConstantStatus/src/types.ts +0 -18
- package/components/CurdForm/index.ts +0 -9
- package/components/CurdForm/src/CurdForm.vue +0 -500
- package/components/CurdForm/src/CurdFormItem.vue +0 -70
- package/components/CurdForm/src/FormItem.vue +0 -105
- package/components/CurdForm/src/FormTooltip.vue +0 -54
- package/components/CurdForm/src/components/index.ts +0 -52
- package/components/CurdForm/src/components/schema-form-autocomplete.vue +0 -25
- package/components/CurdForm/src/components/schema-form-cascader.vue +0 -24
- package/components/CurdForm/src/components/schema-form-checkbox.vue +0 -53
- package/components/CurdForm/src/components/schema-form-choose.vue +0 -225
- package/components/CurdForm/src/components/schema-form-color-picker.vue +0 -23
- package/components/CurdForm/src/components/schema-form-date-picker.vue +0 -34
- package/components/CurdForm/src/components/schema-form-input-number.vue +0 -12
- package/components/CurdForm/src/components/schema-form-input.vue +0 -21
- package/components/CurdForm/src/components/schema-form-radio.vue +0 -59
- package/components/CurdForm/src/components/schema-form-select-v2.vue +0 -60
- package/components/CurdForm/src/components/schema-form-select.vue +0 -93
- package/components/CurdForm/src/components/schema-form-switch.vue +0 -29
- package/components/CurdForm/src/components/schema-form-time-picker.vue +0 -37
- package/components/CurdForm/src/components/schema-form-tree-select.vue +0 -45
- package/components/CurdForm/src/components/schema-form-value.vue +0 -25
- package/components/CurdForm/src/directive/index.ts +0 -60
- package/components/CurdForm/src/hooks/index.ts +0 -6
- package/components/CurdForm/src/types.ts +0 -146
- package/components/CurdForm/src/utils/ajax.ts +0 -125
- package/components/CurdForm/src/utils/common.ts +0 -17
- package/components/CurdGroupForm/index.ts +0 -2
- package/components/CurdGroupForm/src/CurdGroupForm.vue +0 -93
- package/components/CurdGroupForm/src/components/CurdFormGroup.vue +0 -39
- package/components/CurdGroupForm/src/hooks/useFormHook.ts +0 -55
- package/components/CurdGroupForm/types.ts +0 -22
- package/components/CurdTable/index.ts +0 -5
- package/components/CurdTable/src/CurdTable.vue +0 -470
- package/components/CurdTable/src/STableColumnControl.vue +0 -88
- package/components/CurdTable/src/STableDetail.vue +0 -52
- package/components/CurdTable/src/STableFilter.vue +0 -50
- package/components/CurdTable/src/STableItem.vue +0 -119
- package/components/CurdTable/src/STableItemFilter.vue +0 -53
- package/components/CurdTable/src/STableItemFormatter.vue +0 -35
- package/components/CurdTable/src/STableItemHeader.vue +0 -33
- package/components/CurdTable/src/STableItemHeaderTooltip.vue +0 -32
- package/components/CurdTable/src/STableMenu.vue +0 -77
- package/components/CurdTable/src/hooks/useColumnHook.ts +0 -77
- package/components/CurdTable/src/types.ts +0 -163
- package/components/CurdTable/utils/common.ts +0 -33
- package/components/CurdTable/utils/tabelToExcel.ts +0 -68
- package/components/DetailInfo/index.ts +0 -5
- package/components/DetailInfo/src/DetailInfo.vue +0 -108
- package/components/DetailInfo/src/DetailInfoContent.vue +0 -27
- package/components/DetailInfo/src/DetailInfoTooltip.vue +0 -33
- package/components/DetailInfo/src/types.ts +0 -23
- package/components/FormDialog/index.ts +0 -3
- package/components/FormDialog/src/FormDialog.vue +0 -276
- package/components/FormDialog/src/hooks/index.ts +0 -2
- package/components/FormDialog/src/hooks/useStepList.ts +0 -49
- package/components/FormDialog/src/hooks/useStepNavigation.ts +0 -74
- package/components/FormDialog/src/index.ts +0 -39
- package/components/FormDialog/src/types.ts +0 -51
- package/components/TableFilter/index.ts +0 -6
- package/components/TableFilter/src/FilterExternal/FilterExternal.vue +0 -121
- package/components/TableFilter/src/FilterSearchBox.vue +0 -65
- package/components/TableFilter/src/TableFilter.vue +0 -236
- package/components/TableFilter/src/components/FilterItem.vue +0 -76
- package/components/TableFilter/src/components/FilterTags.vue +0 -132
- package/components/TableFilter/src/components/FilterToggle.vue +0 -40
- package/components/TableFilter/src/components/FilterType.vue +0 -78
- package/components/TableFilter/src/components/containers/TagsSelect.vue +0 -89
- package/components/TableFilter/types.ts +0 -36
- package/index.ts +0 -25
- package/locale/index.ts +0 -11
- package/utils/common/index.ts +0 -24
- package/utils/hooks/useGlobalConfig.ts +0 -39
- package/utils/hooks/useLocal.ts +0 -61
- package/utils/index.ts +0 -2
- package/utils/vue/index.ts +0 -3
- package/utils/vue/install.ts +0 -18
- package/utils/vue/make-installer.ts +0 -16
- package/utils/vue/typescript.ts +0 -7
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
export declare const DetailInfo: import('../../utils').SFCWithInstall<{
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
+
data: {
|
|
4
|
+
type: import('vue').PropType<import('.').DetailDataItem[]>;
|
|
5
|
+
default: () => never[];
|
|
6
|
+
};
|
|
7
|
+
title: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
showType: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
labelWidth: {
|
|
16
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
labelPosition: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
gutter: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
28
|
+
data: {
|
|
29
|
+
type: import('vue').PropType<import('.').DetailDataItem[]>;
|
|
30
|
+
default: () => never[];
|
|
31
|
+
};
|
|
32
|
+
title: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
showType: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
labelWidth: {
|
|
41
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
labelPosition: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
gutter: {
|
|
49
|
+
type: NumberConstructor;
|
|
50
|
+
default: number;
|
|
51
|
+
};
|
|
52
|
+
}>>, {
|
|
53
|
+
data: import('.').DetailDataItem[];
|
|
54
|
+
title: string;
|
|
55
|
+
labelPosition: string;
|
|
56
|
+
labelWidth: string | number;
|
|
57
|
+
showType: string;
|
|
58
|
+
gutter: number;
|
|
59
|
+
}, true, {}, {}, {
|
|
60
|
+
P: {};
|
|
61
|
+
B: {};
|
|
62
|
+
D: {};
|
|
63
|
+
C: {};
|
|
64
|
+
M: {};
|
|
65
|
+
Defaults: {};
|
|
66
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
67
|
+
data: {
|
|
68
|
+
type: import('vue').PropType<import('.').DetailDataItem[]>;
|
|
69
|
+
default: () => never[];
|
|
70
|
+
};
|
|
71
|
+
title: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
showType: {
|
|
76
|
+
type: StringConstructor;
|
|
77
|
+
default: string;
|
|
78
|
+
};
|
|
79
|
+
labelWidth: {
|
|
80
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
labelPosition: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
gutter: {
|
|
88
|
+
type: NumberConstructor;
|
|
89
|
+
default: number;
|
|
90
|
+
};
|
|
91
|
+
}>>, {}, {}, {}, {}, {
|
|
92
|
+
data: import('.').DetailDataItem[];
|
|
93
|
+
title: string;
|
|
94
|
+
labelPosition: string;
|
|
95
|
+
labelWidth: string | number;
|
|
96
|
+
showType: string;
|
|
97
|
+
gutter: number;
|
|
98
|
+
}>;
|
|
99
|
+
__isFragment?: never;
|
|
100
|
+
__isTeleport?: never;
|
|
101
|
+
__isSuspense?: never;
|
|
102
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
103
|
+
data: {
|
|
104
|
+
type: import('vue').PropType<import('.').DetailDataItem[]>;
|
|
105
|
+
default: () => never[];
|
|
106
|
+
};
|
|
107
|
+
title: {
|
|
108
|
+
type: StringConstructor;
|
|
109
|
+
default: string;
|
|
110
|
+
};
|
|
111
|
+
showType: {
|
|
112
|
+
type: StringConstructor;
|
|
113
|
+
default: string;
|
|
114
|
+
};
|
|
115
|
+
labelWidth: {
|
|
116
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
117
|
+
default: string;
|
|
118
|
+
};
|
|
119
|
+
labelPosition: {
|
|
120
|
+
type: StringConstructor;
|
|
121
|
+
default: string;
|
|
122
|
+
};
|
|
123
|
+
gutter: {
|
|
124
|
+
type: NumberConstructor;
|
|
125
|
+
default: number;
|
|
126
|
+
};
|
|
127
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
128
|
+
data: import('.').DetailDataItem[];
|
|
129
|
+
title: string;
|
|
130
|
+
labelPosition: string;
|
|
131
|
+
labelWidth: string | number;
|
|
132
|
+
showType: string;
|
|
133
|
+
gutter: number;
|
|
134
|
+
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
135
|
+
$slots: Partial<Record<string, (_: {
|
|
136
|
+
row: import('.').DetailDataItem;
|
|
137
|
+
data: import('.').DetailDataItem[];
|
|
138
|
+
index: number;
|
|
139
|
+
}) => any>> & {
|
|
140
|
+
header?(_: {}): any;
|
|
141
|
+
title?(_: {}): any;
|
|
142
|
+
headerRight?(_: {}): any;
|
|
143
|
+
default?(_: {}): any;
|
|
144
|
+
};
|
|
145
|
+
})> & Record<string, unknown>;
|
|
146
|
+
export default DetailInfo;
|
|
147
|
+
export * from './src/types';
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { DetailDataItem } from './types';
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
4
|
+
data: {
|
|
5
|
+
type: PropType<DetailDataItem[]>;
|
|
6
|
+
default: () => never[];
|
|
7
|
+
};
|
|
8
|
+
title: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
/** 显示方式,默认是normal,表格式、带边框,可选项:table、normal */
|
|
13
|
+
showType: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
labelWidth: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
labelPosition: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
gutter: {
|
|
26
|
+
type: NumberConstructor;
|
|
27
|
+
default: number;
|
|
28
|
+
};
|
|
29
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
30
|
+
data: {
|
|
31
|
+
type: PropType<DetailDataItem[]>;
|
|
32
|
+
default: () => never[];
|
|
33
|
+
};
|
|
34
|
+
title: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
/** 显示方式,默认是normal,表格式、带边框,可选项:table、normal */
|
|
39
|
+
showType: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
labelWidth: {
|
|
44
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
labelPosition: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
gutter: {
|
|
52
|
+
type: NumberConstructor;
|
|
53
|
+
default: number;
|
|
54
|
+
};
|
|
55
|
+
}>>, {
|
|
56
|
+
data: DetailDataItem[];
|
|
57
|
+
title: string;
|
|
58
|
+
labelPosition: string;
|
|
59
|
+
labelWidth: string | number;
|
|
60
|
+
showType: string;
|
|
61
|
+
gutter: number;
|
|
62
|
+
}, {}>, Partial<Record<string, (_: {
|
|
63
|
+
row: DetailDataItem;
|
|
64
|
+
data: DetailDataItem[];
|
|
65
|
+
index: number;
|
|
66
|
+
}) => any>> & {
|
|
67
|
+
header?(_: {}): any;
|
|
68
|
+
title?(_: {}): any;
|
|
69
|
+
headerRight?(_: {}): any;
|
|
70
|
+
default?(_: {}): any;
|
|
71
|
+
}>;
|
|
72
|
+
export default _default;
|
|
73
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
74
|
+
new (): {
|
|
75
|
+
$slots: S;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import { defineComponent as S, computed as w, createElementBlock as a, openBlock as o, normalizeClass as u, createCommentVNode as r, renderSlot as d, toDisplayString as y, normalizeStyle as p, Fragment as c, renderList as N, createElementVNode as f, createVNode as V, createBlock as i, unref as h, mergeProps as b, resolveDynamicComponent as W } from "vue";
|
|
2
|
+
import { ElImage as C } from "element-plus";
|
|
3
|
+
import P from "../../ConstantStatus/src/ConstantStatus.vue.js";
|
|
4
|
+
import j from "./DetailInfoContent.vue.js";
|
|
5
|
+
import B from "./DetailInfoTooltip.vue.js";
|
|
6
|
+
const D = {
|
|
7
|
+
key: 0,
|
|
8
|
+
class: "detail-info-header"
|
|
9
|
+
}, E = {
|
|
10
|
+
key: 0,
|
|
11
|
+
class: "header-left"
|
|
12
|
+
}, L = {
|
|
13
|
+
key: 0,
|
|
14
|
+
class: "title"
|
|
15
|
+
}, T = {
|
|
16
|
+
key: 1,
|
|
17
|
+
class: "header-right"
|
|
18
|
+
}, z = {
|
|
19
|
+
key: 1,
|
|
20
|
+
class: "detail-info-body"
|
|
21
|
+
}, I = ["span"], U = { class: "det" }, A = {
|
|
22
|
+
name: "DetailInfo"
|
|
23
|
+
}, H = /* @__PURE__ */ S({
|
|
24
|
+
...A,
|
|
25
|
+
props: {
|
|
26
|
+
data: {
|
|
27
|
+
type: Array,
|
|
28
|
+
default: () => []
|
|
29
|
+
},
|
|
30
|
+
title: {
|
|
31
|
+
type: String,
|
|
32
|
+
default: ""
|
|
33
|
+
},
|
|
34
|
+
/** 显示方式,默认是normal,表格式、带边框,可选项:table、normal */
|
|
35
|
+
showType: {
|
|
36
|
+
type: String,
|
|
37
|
+
default: "normal"
|
|
38
|
+
},
|
|
39
|
+
labelWidth: {
|
|
40
|
+
type: [Number, String],
|
|
41
|
+
default: ""
|
|
42
|
+
},
|
|
43
|
+
labelPosition: {
|
|
44
|
+
type: String,
|
|
45
|
+
default: "left"
|
|
46
|
+
},
|
|
47
|
+
gutter: {
|
|
48
|
+
type: Number,
|
|
49
|
+
default: 0
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
setup(v) {
|
|
53
|
+
const s = v, g = w(() => (s.data || []).filter((l) => typeof l.hidden == "function" ? !l.hidden(s.data) : typeof l.hidden < "u" ? !l.hidden : !0)), k = (t) => {
|
|
54
|
+
const l = typeof t.labelWidth < "u" ? t.labelWidth : s.labelWidth;
|
|
55
|
+
return typeof l == "number" || typeof l == "string" && /^\d+$/.test(l) ? l + "px" : l + "";
|
|
56
|
+
}, $ = (t) => {
|
|
57
|
+
let l = "";
|
|
58
|
+
if (t.labelStyle && typeof t.labelStyle == "object") {
|
|
59
|
+
const e = t.labelStyle;
|
|
60
|
+
l = Object.keys(e).map((n) => n + ":" + e[n]).join(";");
|
|
61
|
+
}
|
|
62
|
+
return `width: ${k(t)};` + l;
|
|
63
|
+
}, _ = (t) => {
|
|
64
|
+
const l = 100 * (t.span || 24) / 24 + "%";
|
|
65
|
+
return { width: l, flex: "0 0 " + l };
|
|
66
|
+
};
|
|
67
|
+
return (t, l) => (o(), a("div", {
|
|
68
|
+
class: u(["detail-info", [s.showType, t.$attrs.shadow]])
|
|
69
|
+
}, [
|
|
70
|
+
t.$slots.header || s.title || t.$slots.title ? (o(), a("div", D, [
|
|
71
|
+
d(t.$slots, "header"),
|
|
72
|
+
t.$slots.header ? r("", !0) : (o(), a("div", E, [
|
|
73
|
+
s.title && !t.$slots.title ? (o(), a("div", L, y(s.title), 1)) : r("", !0),
|
|
74
|
+
d(t.$slots, "title")
|
|
75
|
+
])),
|
|
76
|
+
t.$slots.header ? r("", !0) : (o(), a("div", T, [
|
|
77
|
+
d(t.$slots, "headerRight")
|
|
78
|
+
]))
|
|
79
|
+
])) : r("", !0),
|
|
80
|
+
t.$slots.default ? (o(), a("div", z, [
|
|
81
|
+
d(t.$slots, "default")
|
|
82
|
+
])) : r("", !0),
|
|
83
|
+
t.$slots.default ? r("", !0) : (o(), a("div", {
|
|
84
|
+
key: 2,
|
|
85
|
+
class: u(["detail-info-body", [s.showType]]),
|
|
86
|
+
style: p({ "--gutter": s.gutter + "px" })
|
|
87
|
+
}, [
|
|
88
|
+
(o(!0), a(c, null, N(g.value, (e, n) => (o(), a("div", {
|
|
89
|
+
key: n,
|
|
90
|
+
class: "table-detail-col",
|
|
91
|
+
span: e.span,
|
|
92
|
+
style: p(_(e))
|
|
93
|
+
}, [
|
|
94
|
+
f("div", {
|
|
95
|
+
class: u(["item-col", { "item-col-top": e.labelPosition == "top" || s.labelPosition == "top" }])
|
|
96
|
+
}, [
|
|
97
|
+
e.label ? (o(), a("div", {
|
|
98
|
+
key: 0,
|
|
99
|
+
class: "label",
|
|
100
|
+
style: p($(e))
|
|
101
|
+
}, [
|
|
102
|
+
f("span", null, y(e.label), 1),
|
|
103
|
+
V(B, {
|
|
104
|
+
tooltip: e.tooltip
|
|
105
|
+
}, null, 8, ["tooltip"])
|
|
106
|
+
], 4)) : r("", !0),
|
|
107
|
+
f("div", U, [
|
|
108
|
+
e.slot ? d(t.$slots, e.slot, {
|
|
109
|
+
key: 0,
|
|
110
|
+
row: e,
|
|
111
|
+
data: s.data,
|
|
112
|
+
index: n
|
|
113
|
+
}) : (o(), a(c, { key: 1 }, [
|
|
114
|
+
e.options ? (o(), i(h(P), {
|
|
115
|
+
key: 0,
|
|
116
|
+
value: e.value,
|
|
117
|
+
options: e.options
|
|
118
|
+
}, null, 8, ["value", "options"])) : e.type == "image" ? (o(), i(h(C), b({
|
|
119
|
+
key: 1,
|
|
120
|
+
src: e.value,
|
|
121
|
+
"preview-src-list": [e.value],
|
|
122
|
+
style: { width: "40px", height: "40px", "vertical-align": "top" },
|
|
123
|
+
fit: "cover",
|
|
124
|
+
ref_for: !0
|
|
125
|
+
}, e.props), null, 16, ["src", "preview-src-list"])) : e.type ? (o(), i(W(e.type), b({
|
|
126
|
+
key: 2,
|
|
127
|
+
modelValue: e.value,
|
|
128
|
+
"onUpdate:modelValue": (m) => e.value = m,
|
|
129
|
+
ref_for: !0
|
|
130
|
+
}, e.props), null, 16, ["modelValue", "onUpdate:modelValue"])) : (o(), i(j, {
|
|
131
|
+
key: 3,
|
|
132
|
+
data: e
|
|
133
|
+
}, null, 8, ["data"]))
|
|
134
|
+
], 64))
|
|
135
|
+
])
|
|
136
|
+
], 2)
|
|
137
|
+
], 12, I))), 128))
|
|
138
|
+
], 6))
|
|
139
|
+
], 2));
|
|
140
|
+
}
|
|
141
|
+
});
|
|
142
|
+
export {
|
|
143
|
+
H as default
|
|
144
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { DetailDataItem } from './types';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
data: {
|
|
5
|
+
type: PropType<DetailDataItem>;
|
|
6
|
+
default: () => {};
|
|
7
|
+
};
|
|
8
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
data: {
|
|
10
|
+
type: PropType<DetailDataItem>;
|
|
11
|
+
default: () => {};
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
|
+
data: DetailDataItem;
|
|
15
|
+
}, {}>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { defineComponent as p, computed as d, resolveComponent as c, createBlock as v, createElementBlock as o, openBlock as t, normalizeProps as u, mergeProps as _, withCtx as w, toDisplayString as l, Fragment as f } from "vue";
|
|
2
|
+
const h = ["innerHTML"], m = {
|
|
3
|
+
key: 1,
|
|
4
|
+
style: { "text-overflow": "ellipsis", "white-space": "nowrap", overflow: "hidden" }
|
|
5
|
+
}, y = ["innerHTML"], k = { key: 1 }, C = /* @__PURE__ */ p({
|
|
6
|
+
__name: "DetailInfoContent",
|
|
7
|
+
props: {
|
|
8
|
+
data: {
|
|
9
|
+
type: Object,
|
|
10
|
+
default: () => ({})
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
setup(r) {
|
|
14
|
+
const e = r, i = d(() => {
|
|
15
|
+
if (typeof e.data.showOverflowTooltip == "object") {
|
|
16
|
+
const { content: n, ...a } = e.data.showOverflowTooltip;
|
|
17
|
+
return { content: n || e.data.value, ...a };
|
|
18
|
+
}
|
|
19
|
+
return { content: e.data.value };
|
|
20
|
+
});
|
|
21
|
+
return (n, a) => {
|
|
22
|
+
const s = c("el-tooltip");
|
|
23
|
+
return e.data.showOverflowTooltip ? (t(), v(s, u(_({ key: 0 }, i.value)), {
|
|
24
|
+
default: w(() => [
|
|
25
|
+
e.data.rawContent ? (t(), o("div", {
|
|
26
|
+
key: 0,
|
|
27
|
+
style: { "text-overflow": "ellipsis", "white-space": "nowrap", overflow: "hidden" },
|
|
28
|
+
innerHTML: e.data.value
|
|
29
|
+
}, null, 8, h)) : (t(), o("div", m, l(e.data.value), 1))
|
|
30
|
+
]),
|
|
31
|
+
_: 1
|
|
32
|
+
}, 16)) : (t(), o(f, { key: 1 }, [
|
|
33
|
+
e.data.rawContent ? (t(), o("div", {
|
|
34
|
+
key: 0,
|
|
35
|
+
innerHTML: e.data.value
|
|
36
|
+
}, null, 8, y)) : (t(), o("div", k, l(e.data.value), 1))
|
|
37
|
+
], 64));
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
export {
|
|
42
|
+
C as default
|
|
43
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<{
|
|
3
|
+
tooltip: {
|
|
4
|
+
type: PropType<string | import('element-plus/es/components/tooltip').ElTooltipProps>;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
8
|
+
tooltip: {
|
|
9
|
+
type: PropType<string | import('element-plus/es/components/tooltip').ElTooltipProps>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
}>>, {
|
|
13
|
+
tooltip: string | import('element-plus/es/components/tooltip/index.mjs').ElTooltipProps;
|
|
14
|
+
}, {}>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { defineComponent as _, resolveComponent as n, createBlock as a, createCommentVNode as u, openBlock as f, normalizeProps as m, mergeProps as d, withCtx as e, createVNode as r, unref as y, createElementVNode as b } from "vue";
|
|
2
|
+
import { Warning as g } from "@element-plus/icons-vue";
|
|
3
|
+
const C = ["innerHTML"], j = /* @__PURE__ */ _({
|
|
4
|
+
__name: "DetailInfoTooltip",
|
|
5
|
+
props: {
|
|
6
|
+
tooltip: {
|
|
7
|
+
type: [String, Object],
|
|
8
|
+
default: ""
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
setup(l) {
|
|
12
|
+
const o = l, p = () => {
|
|
13
|
+
const t = o.tooltip;
|
|
14
|
+
return t ? typeof t == "string" ? t : typeof t == "object" ? t.content : "" : "";
|
|
15
|
+
};
|
|
16
|
+
return (t, k) => {
|
|
17
|
+
const i = n("el-icon"), c = n("el-button"), s = n("el-tooltip");
|
|
18
|
+
return o.tooltip ? (f(), a(s, m(d({ key: 0 }, typeof o.tooltip == "object" ? o.tooltip : {})), {
|
|
19
|
+
content: e(() => [
|
|
20
|
+
b("div", {
|
|
21
|
+
innerHTML: p()
|
|
22
|
+
}, null, 8, C)
|
|
23
|
+
]),
|
|
24
|
+
default: e(() => [
|
|
25
|
+
r(c, {
|
|
26
|
+
class: "tooltip",
|
|
27
|
+
type: "primary",
|
|
28
|
+
link: ""
|
|
29
|
+
}, {
|
|
30
|
+
default: e(() => [
|
|
31
|
+
r(i, null, {
|
|
32
|
+
default: e(() => [
|
|
33
|
+
r(y(g))
|
|
34
|
+
]),
|
|
35
|
+
_: 1
|
|
36
|
+
})
|
|
37
|
+
]),
|
|
38
|
+
_: 1
|
|
39
|
+
})
|
|
40
|
+
]),
|
|
41
|
+
_: 1
|
|
42
|
+
}, 16)) : u("", !0);
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
export {
|
|
47
|
+
j as default
|
|
48
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ElTooltipProps } from 'element-plus';
|
|
2
|
+
import { defineComponent } from 'vue';
|
|
3
|
+
import { OptionItem } from '../../ConstantStatus/src/types';
|
|
4
|
+
export interface DetailDataItem extends Record<string, unknown> {
|
|
5
|
+
label?: string;
|
|
6
|
+
value?: unknown;
|
|
7
|
+
/** 当前项占的宽度,最大24, 默认24 */
|
|
8
|
+
span?: number;
|
|
9
|
+
/** 当前数据的选项,里面包含的图标、颜色信息会自动显示 */
|
|
10
|
+
options?: Array<OptionItem>;
|
|
11
|
+
/** type为image时,会把value当做image的url来显示图片 */
|
|
12
|
+
type?: string | ReturnType<typeof defineComponent>;
|
|
13
|
+
labelWidth?: number | string;
|
|
14
|
+
props?: Record<string, string>;
|
|
15
|
+
slot?: string;
|
|
16
|
+
tooltip?: string | ElTooltipProps;
|
|
17
|
+
labelPosition?: string | "left" | "right" | "center" | "top";
|
|
18
|
+
labelStyle?: string | Record<string, string | number>;
|
|
19
|
+
showOverflowTooltip?: boolean | string | Partial<ElTooltipProps>;
|
|
20
|
+
rawContent?: boolean;
|
|
21
|
+
hidden?: boolean | ((data: DetailDataItem[]) => boolean);
|
|
22
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const FormDialog: {
|
|
2
|
+
show: (options: import('./src/types').FormDialogOptions) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3
|
+
[key: string]: any;
|
|
4
|
+
}>;
|
|
5
|
+
install: (app: import('vue').App<Element>) => void;
|
|
6
|
+
};
|
|
7
|
+
export default FormDialog;
|