fengmao-ui 1.3.1 → 1.3.3
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/lib/adaptive-page/index.d.ts +2389 -0
- package/lib/adaptive-page/src/index.vue.d.ts +774 -0
- package/lib/button/index.d.ts +176 -0
- package/lib/button/src/index.vue.d.ts +48 -0
- package/lib/components.d.ts +35 -0
- package/lib/date-picker/index.d.ts +218 -0
- package/lib/date-picker/src/index.vue.d.ts +73 -0
- package/lib/detail/index.d.ts +184 -0
- package/lib/detail/src/index.vue.d.ts +51 -0
- package/lib/detail/src/renderTooltip.vue.d.ts +8 -0
- package/lib/fengmao-ui.js +8 -7
- package/lib/fengmao-ui.js.gz +0 -0
- package/lib/fengmao-ui.umd.cjs +2 -2
- package/lib/form/index.d.ts +253 -0
- package/lib/form/src/index.vue.d.ts +94 -0
- package/lib/form/src/renderComp.vue.d.ts +8 -0
- package/lib/iconfont/iconfont.css +255 -0
- package/lib/iconfont/iconfont.js +1 -0
- package/lib/iconfont/iconfont.js.gz +0 -0
- package/lib/iconfont/iconfont.json +429 -0
- package/lib/iconfont/iconfont.json.gz +0 -0
- package/lib/iconfont/iconfont.ttf +0 -0
- package/lib/iconfont/iconfont.woff +0 -0
- package/lib/iconfont/iconfont.woff2 +0 -0
- package/lib/index.d.ts +20 -0
- package/lib/layout-page/index.d.ts +136 -0
- package/lib/layout-page/src/index.vue.d.ts +27 -0
- package/lib/layout-page-item/index.d.ts +109 -0
- package/lib/layout-page-item/src/index.vue.d.ts +14 -0
- package/lib/module-form/index.d.ts +486 -0
- package/lib/module-form/src/index.vue.d.ts +168 -0
- package/lib/module-form/src/moduleDetail.vue.d.ts +30 -0
- package/lib/module-form/src/moduleForm.vue.d.ts +36 -0
- package/lib/query-condition/index.d.ts +458 -0
- package/lib/query-condition/src/index.vue.d.ts +169 -0
- package/lib/query-condition/src/renderComp.vue.d.ts +8 -0
- package/lib/radio/index.d.ts +217 -0
- package/lib/radio/src/index.vue.d.ts +70 -0
- package/lib/radio/src/radio.d.ts +12 -0
- package/lib/select/index.d.ts +281 -0
- package/lib/select/src/index.vue.d.ts +108 -0
- package/lib/select-table/index.d.ts +1069 -0
- package/lib/select-table/src/index.vue.d.ts +402 -0
- package/lib/select-table/src/renderCol.vue.d.ts +20 -0
- package/lib/step-wizard/index.d.ts +206 -0
- package/lib/step-wizard/src/fixBtn.vue.d.ts +4 -0
- package/lib/step-wizard/src/index.vue.d.ts +64 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/lib/table/index.d.ts +1534 -0
- package/lib/table/src/ColumnSet.vue.d.ts +137 -0
- package/lib/table/src/TTableColumn.vue.d.ts +103 -0
- package/lib/table/src/index.vue.d.ts +560 -0
- package/lib/table/src/renderCol.vue.d.ts +20 -0
- package/lib/table/src/renderHeader.vue.d.ts +16 -0
- package/lib/table/src/singleEditCell.vue.d.ts +83 -0
- package/lib/timer-btn/index.d.ts +156 -0
- package/lib/timer-btn/src/index.vue.d.ts +32 -0
- package/lib/utils/directives/click-outside/index.d.ts +3 -0
- package/lib/withInstall.d.ts +4 -0
- package/package.json +6 -1
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
handleType: {
|
|
4
|
+
type: PropType<"edit" | "desc">;
|
|
5
|
+
validator: (value: string) => boolean;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
titleSlot: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
isShowBack: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
isGoBackEvent: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
btnTxt: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
isTabMargin: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
tabMarginNum: {
|
|
29
|
+
type: NumberConstructor;
|
|
30
|
+
default: number;
|
|
31
|
+
};
|
|
32
|
+
footer: ObjectConstructor;
|
|
33
|
+
title: StringConstructor;
|
|
34
|
+
subTitle: StringConstructor;
|
|
35
|
+
tabs: any[];
|
|
36
|
+
submit: FunctionConstructor;
|
|
37
|
+
}, {
|
|
38
|
+
props: any;
|
|
39
|
+
attrs: any;
|
|
40
|
+
slots: Readonly<{
|
|
41
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
42
|
+
}>;
|
|
43
|
+
activeName: any;
|
|
44
|
+
loading: import("vue").Ref<boolean>;
|
|
45
|
+
tForm: any;
|
|
46
|
+
emits: (event: "validateError" | "back" | "tabsChange", ...args: any[]) => void;
|
|
47
|
+
saveHandle: () => Promise<void>;
|
|
48
|
+
back: () => void;
|
|
49
|
+
show: (formType: any) => void;
|
|
50
|
+
setSelectedTab: (key: any) => void;
|
|
51
|
+
tabsChange: (tab: any) => void;
|
|
52
|
+
resetFormFields: () => void;
|
|
53
|
+
clearValidate: () => void;
|
|
54
|
+
updateFormFields: () => void;
|
|
55
|
+
isShow: (name: any) => boolean;
|
|
56
|
+
ModuleDetail: import("vue").DefineComponent<{
|
|
57
|
+
descData: {
|
|
58
|
+
type: ObjectConstructor;
|
|
59
|
+
default: () => {};
|
|
60
|
+
};
|
|
61
|
+
titleBold: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
65
|
+
}, {
|
|
66
|
+
props: any;
|
|
67
|
+
slots: Readonly<{
|
|
68
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
69
|
+
}>;
|
|
70
|
+
attrs: any;
|
|
71
|
+
defaultActiveKey: import("vue").WritableComputedRef<string[]>;
|
|
72
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
73
|
+
descData: {
|
|
74
|
+
type: ObjectConstructor;
|
|
75
|
+
default: () => {};
|
|
76
|
+
};
|
|
77
|
+
titleBold: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
}>>, {
|
|
82
|
+
descData: Record<string, any>;
|
|
83
|
+
titleBold: boolean;
|
|
84
|
+
}, {}>;
|
|
85
|
+
ModuleForm: import("vue").DefineComponent<{
|
|
86
|
+
formOpts: {
|
|
87
|
+
type: ObjectConstructor;
|
|
88
|
+
default: () => {};
|
|
89
|
+
};
|
|
90
|
+
titleBold: {
|
|
91
|
+
type: BooleanConstructor;
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
94
|
+
}, {
|
|
95
|
+
props: any;
|
|
96
|
+
dashboardRef: import("vue").Ref<{}>;
|
|
97
|
+
slots: Readonly<{
|
|
98
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
99
|
+
}>;
|
|
100
|
+
attrs: any;
|
|
101
|
+
getChildRef: (index: any) => any;
|
|
102
|
+
defaultActiveKey: import("vue").WritableComputedRef<string[]>;
|
|
103
|
+
emits: (event: "handleEvent", ...args: any[]) => void;
|
|
104
|
+
handleEvent: (val: any, type: any) => void;
|
|
105
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "handleEvent"[], "handleEvent", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
106
|
+
formOpts: {
|
|
107
|
+
type: ObjectConstructor;
|
|
108
|
+
default: () => {};
|
|
109
|
+
};
|
|
110
|
+
titleBold: {
|
|
111
|
+
type: BooleanConstructor;
|
|
112
|
+
default: boolean;
|
|
113
|
+
};
|
|
114
|
+
}>> & {
|
|
115
|
+
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
116
|
+
}, {
|
|
117
|
+
formOpts: Record<string, any>;
|
|
118
|
+
titleBold: boolean;
|
|
119
|
+
}, {}>;
|
|
120
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("validateError" | "back" | "tabsChange")[], "validateError" | "back" | "tabsChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
121
|
+
handleType: {
|
|
122
|
+
type: PropType<"edit" | "desc">;
|
|
123
|
+
validator: (value: string) => boolean;
|
|
124
|
+
default: string;
|
|
125
|
+
};
|
|
126
|
+
titleSlot: {
|
|
127
|
+
type: BooleanConstructor;
|
|
128
|
+
default: boolean;
|
|
129
|
+
};
|
|
130
|
+
isShowBack: {
|
|
131
|
+
type: BooleanConstructor;
|
|
132
|
+
default: boolean;
|
|
133
|
+
};
|
|
134
|
+
isGoBackEvent: {
|
|
135
|
+
type: BooleanConstructor;
|
|
136
|
+
default: boolean;
|
|
137
|
+
};
|
|
138
|
+
btnTxt: {
|
|
139
|
+
type: StringConstructor;
|
|
140
|
+
default: string;
|
|
141
|
+
};
|
|
142
|
+
isTabMargin: {
|
|
143
|
+
type: BooleanConstructor;
|
|
144
|
+
default: boolean;
|
|
145
|
+
};
|
|
146
|
+
tabMarginNum: {
|
|
147
|
+
type: NumberConstructor;
|
|
148
|
+
default: number;
|
|
149
|
+
};
|
|
150
|
+
footer: ObjectConstructor;
|
|
151
|
+
title: StringConstructor;
|
|
152
|
+
subTitle: StringConstructor;
|
|
153
|
+
tabs: any[];
|
|
154
|
+
submit: FunctionConstructor;
|
|
155
|
+
}>> & {
|
|
156
|
+
onValidateError?: ((...args: any[]) => any) | undefined;
|
|
157
|
+
onBack?: ((...args: any[]) => any) | undefined;
|
|
158
|
+
onTabsChange?: ((...args: any[]) => any) | undefined;
|
|
159
|
+
}, {
|
|
160
|
+
handleType: "edit" | "desc";
|
|
161
|
+
titleSlot: boolean;
|
|
162
|
+
isShowBack: boolean;
|
|
163
|
+
isGoBackEvent: boolean;
|
|
164
|
+
btnTxt: string;
|
|
165
|
+
isTabMargin: boolean;
|
|
166
|
+
tabMarginNum: number;
|
|
167
|
+
}, {}>;
|
|
168
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
descData: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {};
|
|
5
|
+
};
|
|
6
|
+
titleBold: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
}, {
|
|
11
|
+
props: any;
|
|
12
|
+
slots: Readonly<{
|
|
13
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
14
|
+
}>;
|
|
15
|
+
attrs: any;
|
|
16
|
+
defaultActiveKey: import("vue").WritableComputedRef<string[]>;
|
|
17
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
descData: {
|
|
19
|
+
type: ObjectConstructor;
|
|
20
|
+
default: () => {};
|
|
21
|
+
};
|
|
22
|
+
titleBold: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
}>>, {
|
|
27
|
+
descData: Record<string, any>;
|
|
28
|
+
titleBold: boolean;
|
|
29
|
+
}, {}>;
|
|
30
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
formOpts: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {};
|
|
5
|
+
};
|
|
6
|
+
titleBold: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
}, {
|
|
11
|
+
props: any;
|
|
12
|
+
dashboardRef: import("vue").Ref<{}>;
|
|
13
|
+
slots: Readonly<{
|
|
14
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
15
|
+
}>;
|
|
16
|
+
attrs: any;
|
|
17
|
+
getChildRef: (index: any) => any;
|
|
18
|
+
defaultActiveKey: import("vue").WritableComputedRef<string[]>;
|
|
19
|
+
emits: (event: "handleEvent", ...args: any[]) => void;
|
|
20
|
+
handleEvent: (val: any, type: any) => void;
|
|
21
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "handleEvent"[], "handleEvent", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
formOpts: {
|
|
23
|
+
type: ObjectConstructor;
|
|
24
|
+
default: () => {};
|
|
25
|
+
};
|
|
26
|
+
titleBold: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
}>> & {
|
|
31
|
+
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
32
|
+
}, {
|
|
33
|
+
formOpts: Record<string, any>;
|
|
34
|
+
titleBold: boolean;
|
|
35
|
+
}, {}>;
|
|
36
|
+
export default _sfc_main;
|