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,108 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
4
|
+
};
|
|
5
|
+
multiple: {
|
|
6
|
+
type: BooleanConstructor;
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
width: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
valueCustom: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
labelCustom: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
customLabel: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
};
|
|
23
|
+
optionSource: {
|
|
24
|
+
type: any[];
|
|
25
|
+
default: () => never[];
|
|
26
|
+
};
|
|
27
|
+
isShowPagination: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
paginationOption: {
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
default: () => {
|
|
34
|
+
pageSize: number;
|
|
35
|
+
currentPage: number;
|
|
36
|
+
pagerCount: number;
|
|
37
|
+
total: number;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
useVirtual: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
}, {
|
|
45
|
+
props: any;
|
|
46
|
+
slots: Readonly<{
|
|
47
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
48
|
+
}>;
|
|
49
|
+
emits: (event: "update:modelValue", ...args: any[]) => void;
|
|
50
|
+
childSelectedValue: any;
|
|
51
|
+
selectChecked: import("vue").WritableComputedRef<any>;
|
|
52
|
+
selectAll: (val: any) => void;
|
|
53
|
+
customLabelHandler: (item: any) => any;
|
|
54
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
|
+
modelValue: {
|
|
56
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
57
|
+
};
|
|
58
|
+
multiple: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
width: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
};
|
|
65
|
+
valueCustom: {
|
|
66
|
+
type: StringConstructor;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
labelCustom: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
customLabel: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
};
|
|
76
|
+
optionSource: {
|
|
77
|
+
type: any[];
|
|
78
|
+
default: () => never[];
|
|
79
|
+
};
|
|
80
|
+
isShowPagination: {
|
|
81
|
+
type: BooleanConstructor;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
paginationOption: {
|
|
85
|
+
type: ObjectConstructor;
|
|
86
|
+
default: () => {
|
|
87
|
+
pageSize: number;
|
|
88
|
+
currentPage: number;
|
|
89
|
+
pagerCount: number;
|
|
90
|
+
total: number;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
useVirtual: {
|
|
94
|
+
type: BooleanConstructor;
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
97
|
+
}>> & {
|
|
98
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
99
|
+
}, {
|
|
100
|
+
isShowPagination: boolean;
|
|
101
|
+
multiple: boolean;
|
|
102
|
+
valueCustom: string;
|
|
103
|
+
labelCustom: string;
|
|
104
|
+
optionSource: any;
|
|
105
|
+
paginationOption: Record<string, any>;
|
|
106
|
+
useVirtual: boolean;
|
|
107
|
+
}, {}>;
|
|
108
|
+
export default _sfc_main;
|