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,137 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
columns: {
|
|
3
|
+
type: ArrayConstructor;
|
|
4
|
+
default: () => never[];
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
name: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
columnSetBind: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: () => void;
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
props: any;
|
|
20
|
+
$attrs: any;
|
|
21
|
+
columnBind: import("vue").ComputedRef<any>;
|
|
22
|
+
getColumnSetCache: () => any;
|
|
23
|
+
initColumnSet: () => ({
|
|
24
|
+
label: any;
|
|
25
|
+
prop: any;
|
|
26
|
+
hidden: boolean;
|
|
27
|
+
checkBoxDisabled: boolean;
|
|
28
|
+
isShowHidden: any;
|
|
29
|
+
} | {
|
|
30
|
+
label: any;
|
|
31
|
+
prop: any;
|
|
32
|
+
checkBoxDisabled: boolean;
|
|
33
|
+
hidden: boolean;
|
|
34
|
+
isShowHidden?: undefined;
|
|
35
|
+
})[];
|
|
36
|
+
emits: (event: "columnSetting", ...args: any[]) => void;
|
|
37
|
+
state: any;
|
|
38
|
+
checkChanged: (checked: any, index: any) => void;
|
|
39
|
+
readonly Draggable: import("vue").DefineComponent<{
|
|
40
|
+
list: {
|
|
41
|
+
type: ArrayConstructor;
|
|
42
|
+
required: boolean;
|
|
43
|
+
default: any;
|
|
44
|
+
};
|
|
45
|
+
modelValue: {
|
|
46
|
+
type: ArrayConstructor;
|
|
47
|
+
required: boolean;
|
|
48
|
+
default: any;
|
|
49
|
+
};
|
|
50
|
+
itemKey: {
|
|
51
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
52
|
+
required: boolean;
|
|
53
|
+
};
|
|
54
|
+
clone: {
|
|
55
|
+
type: FunctionConstructor;
|
|
56
|
+
default: (original: any) => any;
|
|
57
|
+
};
|
|
58
|
+
tag: {
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
move: {
|
|
63
|
+
type: FunctionConstructor;
|
|
64
|
+
default: any;
|
|
65
|
+
};
|
|
66
|
+
componentData: {
|
|
67
|
+
type: ObjectConstructor;
|
|
68
|
+
required: boolean;
|
|
69
|
+
default: any;
|
|
70
|
+
};
|
|
71
|
+
}, unknown, {
|
|
72
|
+
error: boolean;
|
|
73
|
+
}, {
|
|
74
|
+
realList(): any;
|
|
75
|
+
getKey(): any;
|
|
76
|
+
}, {
|
|
77
|
+
getUnderlyingVm(domElement: any): any;
|
|
78
|
+
getUnderlyingPotencialDraggableComponent(htmElement: any): any;
|
|
79
|
+
emitChanges(evt: any): void;
|
|
80
|
+
alterList(onList: any): void;
|
|
81
|
+
spliceList(): void;
|
|
82
|
+
updatePosition(oldIndex: any, newIndex: any): void;
|
|
83
|
+
getRelatedContextFromMoveEvent({ to, related }: {
|
|
84
|
+
to: any;
|
|
85
|
+
related: any;
|
|
86
|
+
}): any;
|
|
87
|
+
getVmIndexFromDomIndex(domIndex: any): any;
|
|
88
|
+
onDragStart(evt: any): void;
|
|
89
|
+
onDragAdd(evt: any): void;
|
|
90
|
+
onDragRemove(evt: any): void;
|
|
91
|
+
onDragUpdate(evt: any): void;
|
|
92
|
+
computeFutureIndex(relatedContext: any, evt: any): any;
|
|
93
|
+
onDragMove(evt: any, originalEvent: any): any;
|
|
94
|
+
onDragEnd(): void;
|
|
95
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
96
|
+
move: Function;
|
|
97
|
+
tag: string;
|
|
98
|
+
clone: Function;
|
|
99
|
+
list: unknown[];
|
|
100
|
+
modelValue: unknown[];
|
|
101
|
+
componentData: Record<string, any>;
|
|
102
|
+
} & {
|
|
103
|
+
itemKey?: string | Function | undefined;
|
|
104
|
+
}>, {
|
|
105
|
+
move: Function;
|
|
106
|
+
tag: string;
|
|
107
|
+
clone: Function;
|
|
108
|
+
list: unknown[];
|
|
109
|
+
modelValue: unknown[];
|
|
110
|
+
componentData: Record<string, any>;
|
|
111
|
+
}, {}>;
|
|
112
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "columnSetting"[], "columnSetting", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
|
+
columns: {
|
|
114
|
+
type: ArrayConstructor;
|
|
115
|
+
default: () => never[];
|
|
116
|
+
};
|
|
117
|
+
title: {
|
|
118
|
+
type: StringConstructor;
|
|
119
|
+
default: string;
|
|
120
|
+
};
|
|
121
|
+
name: {
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
125
|
+
columnSetBind: {
|
|
126
|
+
type: ObjectConstructor;
|
|
127
|
+
default: () => void;
|
|
128
|
+
};
|
|
129
|
+
}>> & {
|
|
130
|
+
onColumnSetting?: ((...args: any[]) => any) | undefined;
|
|
131
|
+
}, {
|
|
132
|
+
name: string;
|
|
133
|
+
columns: unknown[];
|
|
134
|
+
title: string;
|
|
135
|
+
columnSetBind: Record<string, any>;
|
|
136
|
+
}, {}>;
|
|
137
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
item: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {};
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
}, {
|
|
8
|
+
slots: Readonly<{
|
|
9
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
10
|
+
}>;
|
|
11
|
+
SingleEditCell: import("vue").DefineComponent<{
|
|
12
|
+
configEdit: {
|
|
13
|
+
type: ObjectConstructor;
|
|
14
|
+
default: () => {};
|
|
15
|
+
};
|
|
16
|
+
listTypeInfo: {
|
|
17
|
+
type: ObjectConstructor;
|
|
18
|
+
default: () => {};
|
|
19
|
+
};
|
|
20
|
+
scope: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
default: {};
|
|
23
|
+
};
|
|
24
|
+
prop: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
isShowRules: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
}, {
|
|
33
|
+
props: any;
|
|
34
|
+
emits: (event: "handleEvent" | "update:modelValue" | "keyupHandle", ...args: any[]) => void;
|
|
35
|
+
keyUpHandle: ($event: any) => void;
|
|
36
|
+
cEvent: import("vue").ComputedRef<(configEdit: any) => {}>;
|
|
37
|
+
compChildName: import("vue").ComputedRef<(configEdit: any) => "el-radio" | "el-checkbox" | "el-option" | undefined>;
|
|
38
|
+
compChildLabel: import("vue").ComputedRef<(configEdit: any, value: any) => any>;
|
|
39
|
+
compChildValue: import("vue").ComputedRef<(configEdit: any, value: any, key: any) => any>;
|
|
40
|
+
compChildShowLabel: import("vue").ComputedRef<(configEdit: any, value: any) => any>;
|
|
41
|
+
getPlaceholder: (row: any) => any;
|
|
42
|
+
handleEvent: (type: any, val: any, editCom: any) => void;
|
|
43
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleEvent" | "update:modelValue" | "keyupHandle")[], "handleEvent" | "update:modelValue" | "keyupHandle", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
configEdit: {
|
|
45
|
+
type: ObjectConstructor;
|
|
46
|
+
default: () => {};
|
|
47
|
+
};
|
|
48
|
+
listTypeInfo: {
|
|
49
|
+
type: ObjectConstructor;
|
|
50
|
+
default: () => {};
|
|
51
|
+
};
|
|
52
|
+
scope: {
|
|
53
|
+
type: ObjectConstructor;
|
|
54
|
+
default: {};
|
|
55
|
+
};
|
|
56
|
+
prop: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
isShowRules: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
}>> & {
|
|
65
|
+
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
66
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
|
+
onKeyupHandle?: ((...args: any[]) => any) | undefined;
|
|
68
|
+
}, {
|
|
69
|
+
configEdit: Record<string, any>;
|
|
70
|
+
listTypeInfo: Record<string, any>;
|
|
71
|
+
scope: Record<string, any>;
|
|
72
|
+
prop: string;
|
|
73
|
+
isShowRules: boolean;
|
|
74
|
+
}, {}>;
|
|
75
|
+
RenderCol: import("vue").DefineComponent<{
|
|
76
|
+
row: ObjectConstructor;
|
|
77
|
+
render: FunctionConstructor;
|
|
78
|
+
index: NumberConstructor;
|
|
79
|
+
column: {
|
|
80
|
+
type: ObjectConstructor;
|
|
81
|
+
default: null;
|
|
82
|
+
};
|
|
83
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
+
row: ObjectConstructor;
|
|
85
|
+
render: FunctionConstructor;
|
|
86
|
+
index: NumberConstructor;
|
|
87
|
+
column: {
|
|
88
|
+
type: ObjectConstructor;
|
|
89
|
+
default: null;
|
|
90
|
+
};
|
|
91
|
+
}>>, {
|
|
92
|
+
column: Record<string, any>;
|
|
93
|
+
}, {}>;
|
|
94
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
95
|
+
item: {
|
|
96
|
+
type: ObjectConstructor;
|
|
97
|
+
default: () => {};
|
|
98
|
+
required: true;
|
|
99
|
+
};
|
|
100
|
+
}>>, {
|
|
101
|
+
item: Record<string, any>;
|
|
102
|
+
}, {}>;
|
|
103
|
+
export default _sfc_main;
|