@fmdeui/fmui 1.0.89 → 1.0.91
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/es/component.mjs +5 -1
- package/es/components/fm-inputdropdown/index.d.ts +185 -0
- package/es/components/fm-inputdropdown/index.vue.d.ts +228 -0
- package/es/components/fm-inputnumber/index.d.ts +94 -0
- package/es/components/fm-inputnumber/index.vue.d.ts +63 -0
- package/es/components/index.d.ts +2 -0
- package/es/components/select-table/index.d.ts +3 -3
- package/es/components/select-table/src/index.vue.d.ts +1 -1
- package/es/index.mjs +1 -0
- package/es/packages/components/fm-inputdropdown/index.mjs +6 -0
- package/es/packages/components/fm-inputdropdown/index.vue.mjs +5 -0
- package/es/packages/components/fm-inputdropdown/index.vue2.mjs +198 -0
- package/es/packages/components/fm-inputnumber/index.mjs +6 -0
- package/es/packages/components/fm-inputnumber/index.vue.mjs +5 -0
- package/es/packages/components/fm-inputnumber/index.vue2.mjs +104 -0
- package/es/packages/components/index.mjs +2 -0
- package/es/packages/stores/ainputdropdow.mjs +36 -0
- package/es/packages/stores/index.mjs +1 -0
- package/es/stores/ainputdropdow.d.ts +17 -0
- package/es/stores/index.d.ts +1 -0
- package/index.js +369 -39
- package/index.min.js +7 -7
- package/index.min.mjs +7 -7
- package/index.mjs +371 -42
- package/lib/component.js +28 -24
- package/lib/components/fm-inputdropdown/index.d.ts +185 -0
- package/lib/components/fm-inputdropdown/index.vue.d.ts +228 -0
- package/lib/components/fm-inputnumber/index.d.ts +94 -0
- package/lib/components/fm-inputnumber/index.vue.d.ts +63 -0
- package/lib/components/index.d.ts +2 -0
- package/lib/components/select-table/index.d.ts +3 -3
- package/lib/components/select-table/src/index.vue.d.ts +1 -1
- package/lib/index.js +2 -0
- package/lib/packages/components/fm-inputdropdown/index.js +8 -0
- package/lib/packages/components/fm-inputdropdown/index.vue.js +9 -0
- package/lib/packages/components/fm-inputdropdown/index.vue2.js +202 -0
- package/lib/packages/components/fm-inputnumber/index.js +8 -0
- package/lib/packages/components/fm-inputnumber/index.vue.js +9 -0
- package/lib/packages/components/fm-inputnumber/index.vue2.js +108 -0
- package/lib/packages/components/index.js +6 -2
- package/lib/packages/stores/ainputdropdow.js +38 -0
- package/lib/packages/stores/index.js +2 -0
- package/lib/stores/ainputdropdow.d.ts +17 -0
- package/lib/stores/index.d.ts +1 -0
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/package.json +1 -1
- /package/{lib → es}/index.css +0 -0
- /package/{es/component.css → lib/make-installer.css} +0 -0
package/es/component.mjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FButton } from './packages/components/button/index.mjs';
|
|
2
2
|
import { FInput } from './packages/components/input/index.mjs';
|
|
3
|
+
import { Fminputdropdown } from './packages/components/fm-inputdropdown/index.mjs';
|
|
3
4
|
import { FLayoutPage } from './packages/components/layout-page/index.mjs';
|
|
4
5
|
import { FLayoutPageItem } from './packages/components/layout-page-item/index.mjs';
|
|
5
6
|
import { FSelect } from './packages/components/select/index.mjs';
|
|
@@ -12,10 +13,12 @@ import { FSettings } from './packages/components/fm-settings/index.mjs';
|
|
|
12
13
|
import { FModifyRecord } from './packages/components/modifyRecord/index.mjs';
|
|
13
14
|
import { FmTree } from './packages/components/fmtree/index.mjs';
|
|
14
15
|
import { FmCascader } from './packages/components/fmcascader/index.mjs';
|
|
16
|
+
import { FmInputNumber } from './packages/components/fm-inputnumber/index.mjs';
|
|
15
17
|
|
|
16
18
|
const plugins = [
|
|
17
19
|
FButton,
|
|
18
20
|
FInput,
|
|
21
|
+
Fminputdropdown,
|
|
19
22
|
FLayoutPage,
|
|
20
23
|
FLayoutPageItem,
|
|
21
24
|
FSelect,
|
|
@@ -27,7 +30,8 @@ const plugins = [
|
|
|
27
30
|
FSettings,
|
|
28
31
|
FModifyRecord,
|
|
29
32
|
FmTree,
|
|
30
|
-
FmCascader
|
|
33
|
+
FmCascader,
|
|
34
|
+
FmInputNumber
|
|
31
35
|
];
|
|
32
36
|
|
|
33
37
|
export { plugins as default };
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
export declare const Fminputdropdown: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
optionData: {
|
|
4
|
+
type: {
|
|
5
|
+
(arrayLength: number): any[];
|
|
6
|
+
(...items: any[]): any[];
|
|
7
|
+
new (arrayLength: number): any[];
|
|
8
|
+
new (...items: any[]): any[];
|
|
9
|
+
isArray(arg: any): arg is any[];
|
|
10
|
+
readonly prototype: any[];
|
|
11
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
12
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
13
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
14
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
15
|
+
of<T>(...items: T[]): T[];
|
|
16
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
17
|
+
};
|
|
18
|
+
default: never[];
|
|
19
|
+
};
|
|
20
|
+
bvalue: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
blabel: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
placeholder: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
inputWidth: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
dropWidth: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
dropHeight: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
apiService: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
apiAction: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
basecode: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
multibasecode: {
|
|
57
|
+
type: {
|
|
58
|
+
(arrayLength: number): any[];
|
|
59
|
+
(...items: any[]): any[];
|
|
60
|
+
new (arrayLength: number): any[];
|
|
61
|
+
new (...items: any[]): any[];
|
|
62
|
+
isArray(arg: any): arg is any[];
|
|
63
|
+
readonly prototype: any[];
|
|
64
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
65
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
66
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
67
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
68
|
+
of<T>(...items: T[]): T[];
|
|
69
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
70
|
+
};
|
|
71
|
+
default: never[];
|
|
72
|
+
};
|
|
73
|
+
autoLoadData: {
|
|
74
|
+
type: BooleanConstructor;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
77
|
+
id: {
|
|
78
|
+
type: PropType<number>;
|
|
79
|
+
};
|
|
80
|
+
name: {
|
|
81
|
+
type: PropType<string>;
|
|
82
|
+
};
|
|
83
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
84
|
+
change: (...args: any[]) => void;
|
|
85
|
+
"update:id": (value: number) => void;
|
|
86
|
+
"update:name": (value: string) => void;
|
|
87
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
88
|
+
optionData: {
|
|
89
|
+
type: {
|
|
90
|
+
(arrayLength: number): any[];
|
|
91
|
+
(...items: any[]): any[];
|
|
92
|
+
new (arrayLength: number): any[];
|
|
93
|
+
new (...items: any[]): any[];
|
|
94
|
+
isArray(arg: any): arg is any[];
|
|
95
|
+
readonly prototype: any[];
|
|
96
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
97
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
98
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
99
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
100
|
+
of<T>(...items: T[]): T[];
|
|
101
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
102
|
+
};
|
|
103
|
+
default: never[];
|
|
104
|
+
};
|
|
105
|
+
bvalue: {
|
|
106
|
+
type: StringConstructor;
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
blabel: {
|
|
110
|
+
type: StringConstructor;
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
placeholder: {
|
|
114
|
+
type: StringConstructor;
|
|
115
|
+
default: string;
|
|
116
|
+
};
|
|
117
|
+
inputWidth: {
|
|
118
|
+
type: StringConstructor;
|
|
119
|
+
default: string;
|
|
120
|
+
};
|
|
121
|
+
dropWidth: {
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
125
|
+
dropHeight: {
|
|
126
|
+
type: StringConstructor;
|
|
127
|
+
default: string;
|
|
128
|
+
};
|
|
129
|
+
apiService: {
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
default: string;
|
|
132
|
+
};
|
|
133
|
+
apiAction: {
|
|
134
|
+
type: StringConstructor;
|
|
135
|
+
default: string;
|
|
136
|
+
};
|
|
137
|
+
basecode: {
|
|
138
|
+
type: StringConstructor;
|
|
139
|
+
default: string;
|
|
140
|
+
};
|
|
141
|
+
multibasecode: {
|
|
142
|
+
type: {
|
|
143
|
+
(arrayLength: number): any[];
|
|
144
|
+
(...items: any[]): any[];
|
|
145
|
+
new (arrayLength: number): any[];
|
|
146
|
+
new (...items: any[]): any[];
|
|
147
|
+
isArray(arg: any): arg is any[];
|
|
148
|
+
readonly prototype: any[];
|
|
149
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
150
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
151
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
152
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
153
|
+
of<T>(...items: T[]): T[];
|
|
154
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
155
|
+
};
|
|
156
|
+
default: never[];
|
|
157
|
+
};
|
|
158
|
+
autoLoadData: {
|
|
159
|
+
type: BooleanConstructor;
|
|
160
|
+
default: boolean;
|
|
161
|
+
};
|
|
162
|
+
id: {
|
|
163
|
+
type: PropType<number>;
|
|
164
|
+
};
|
|
165
|
+
name: {
|
|
166
|
+
type: PropType<string>;
|
|
167
|
+
};
|
|
168
|
+
}>> & Readonly<{
|
|
169
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
170
|
+
"onUpdate:id"?: ((value: number) => any) | undefined;
|
|
171
|
+
"onUpdate:name"?: ((value: string) => any) | undefined;
|
|
172
|
+
}>, {
|
|
173
|
+
placeholder: string;
|
|
174
|
+
optionData: any[];
|
|
175
|
+
bvalue: string;
|
|
176
|
+
blabel: string;
|
|
177
|
+
inputWidth: string;
|
|
178
|
+
dropWidth: string;
|
|
179
|
+
dropHeight: string;
|
|
180
|
+
apiService: string;
|
|
181
|
+
apiAction: string;
|
|
182
|
+
basecode: string;
|
|
183
|
+
multibasecode: any[];
|
|
184
|
+
autoLoadData: boolean;
|
|
185
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
optionData: {
|
|
4
|
+
type: {
|
|
5
|
+
(arrayLength: number): any[];
|
|
6
|
+
(...items: any[]): any[];
|
|
7
|
+
new (arrayLength: number): any[];
|
|
8
|
+
new (...items: any[]): any[];
|
|
9
|
+
isArray(arg: any): arg is any[];
|
|
10
|
+
readonly prototype: any[];
|
|
11
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
12
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
13
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
14
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
15
|
+
of<T>(...items: T[]): T[];
|
|
16
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
17
|
+
};
|
|
18
|
+
default: never[];
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* 值的属性值
|
|
22
|
+
*/
|
|
23
|
+
bvalue: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* 值的属性标签
|
|
29
|
+
*/
|
|
30
|
+
blabel: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
placeholder: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
inputWidth: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
dropWidth: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
dropHeight: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* api service name
|
|
52
|
+
*/
|
|
53
|
+
apiService: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* api service 下的方法
|
|
59
|
+
*/
|
|
60
|
+
apiAction: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* 基础编码 自动获取数据
|
|
66
|
+
*/
|
|
67
|
+
basecode: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* 基础编码 多个编码合在一起调用
|
|
73
|
+
*/
|
|
74
|
+
multibasecode: {
|
|
75
|
+
type: {
|
|
76
|
+
(arrayLength: number): any[];
|
|
77
|
+
(...items: any[]): any[];
|
|
78
|
+
new (arrayLength: number): any[];
|
|
79
|
+
new (...items: any[]): any[];
|
|
80
|
+
isArray(arg: any): arg is any[];
|
|
81
|
+
readonly prototype: any[];
|
|
82
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
83
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
84
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
85
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
86
|
+
of<T>(...items: T[]): T[];
|
|
87
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
88
|
+
};
|
|
89
|
+
default: never[];
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* 是否默认加载数据
|
|
93
|
+
*/
|
|
94
|
+
autoLoadData: {
|
|
95
|
+
type: BooleanConstructor;
|
|
96
|
+
default: boolean;
|
|
97
|
+
};
|
|
98
|
+
id: {
|
|
99
|
+
type: PropType<number>;
|
|
100
|
+
};
|
|
101
|
+
name: {
|
|
102
|
+
type: PropType<string>;
|
|
103
|
+
};
|
|
104
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
105
|
+
change: (...args: any[]) => void;
|
|
106
|
+
"update:id": (value: number) => void;
|
|
107
|
+
"update:name": (value: string) => void;
|
|
108
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
109
|
+
optionData: {
|
|
110
|
+
type: {
|
|
111
|
+
(arrayLength: number): any[];
|
|
112
|
+
(...items: any[]): any[];
|
|
113
|
+
new (arrayLength: number): any[];
|
|
114
|
+
new (...items: any[]): any[];
|
|
115
|
+
isArray(arg: any): arg is any[];
|
|
116
|
+
readonly prototype: any[];
|
|
117
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
118
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
119
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
120
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
121
|
+
of<T>(...items: T[]): T[];
|
|
122
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
123
|
+
};
|
|
124
|
+
default: never[];
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* 值的属性值
|
|
128
|
+
*/
|
|
129
|
+
bvalue: {
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
default: string;
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* 值的属性标签
|
|
135
|
+
*/
|
|
136
|
+
blabel: {
|
|
137
|
+
type: StringConstructor;
|
|
138
|
+
default: string;
|
|
139
|
+
};
|
|
140
|
+
placeholder: {
|
|
141
|
+
type: StringConstructor;
|
|
142
|
+
default: string;
|
|
143
|
+
};
|
|
144
|
+
inputWidth: {
|
|
145
|
+
type: StringConstructor;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
148
|
+
dropWidth: {
|
|
149
|
+
type: StringConstructor;
|
|
150
|
+
default: string;
|
|
151
|
+
};
|
|
152
|
+
dropHeight: {
|
|
153
|
+
type: StringConstructor;
|
|
154
|
+
default: string;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* api service name
|
|
158
|
+
*/
|
|
159
|
+
apiService: {
|
|
160
|
+
type: StringConstructor;
|
|
161
|
+
default: string;
|
|
162
|
+
};
|
|
163
|
+
/**
|
|
164
|
+
* api service 下的方法
|
|
165
|
+
*/
|
|
166
|
+
apiAction: {
|
|
167
|
+
type: StringConstructor;
|
|
168
|
+
default: string;
|
|
169
|
+
};
|
|
170
|
+
/**
|
|
171
|
+
* 基础编码 自动获取数据
|
|
172
|
+
*/
|
|
173
|
+
basecode: {
|
|
174
|
+
type: StringConstructor;
|
|
175
|
+
default: string;
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* 基础编码 多个编码合在一起调用
|
|
179
|
+
*/
|
|
180
|
+
multibasecode: {
|
|
181
|
+
type: {
|
|
182
|
+
(arrayLength: number): any[];
|
|
183
|
+
(...items: any[]): any[];
|
|
184
|
+
new (arrayLength: number): any[];
|
|
185
|
+
new (...items: any[]): any[];
|
|
186
|
+
isArray(arg: any): arg is any[];
|
|
187
|
+
readonly prototype: any[];
|
|
188
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
189
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
190
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
191
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
192
|
+
of<T>(...items: T[]): T[];
|
|
193
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
194
|
+
};
|
|
195
|
+
default: never[];
|
|
196
|
+
};
|
|
197
|
+
/**
|
|
198
|
+
* 是否默认加载数据
|
|
199
|
+
*/
|
|
200
|
+
autoLoadData: {
|
|
201
|
+
type: BooleanConstructor;
|
|
202
|
+
default: boolean;
|
|
203
|
+
};
|
|
204
|
+
id: {
|
|
205
|
+
type: PropType<number>;
|
|
206
|
+
};
|
|
207
|
+
name: {
|
|
208
|
+
type: PropType<string>;
|
|
209
|
+
};
|
|
210
|
+
}>> & Readonly<{
|
|
211
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
212
|
+
"onUpdate:id"?: ((value: number) => any) | undefined;
|
|
213
|
+
"onUpdate:name"?: ((value: string) => any) | undefined;
|
|
214
|
+
}>, {
|
|
215
|
+
placeholder: string;
|
|
216
|
+
optionData: any[];
|
|
217
|
+
bvalue: string;
|
|
218
|
+
blabel: string;
|
|
219
|
+
inputWidth: string;
|
|
220
|
+
dropWidth: string;
|
|
221
|
+
dropHeight: string;
|
|
222
|
+
apiService: string;
|
|
223
|
+
apiAction: string;
|
|
224
|
+
basecode: string;
|
|
225
|
+
multibasecode: any[];
|
|
226
|
+
autoLoadData: boolean;
|
|
227
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
228
|
+
export default _default;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
|
|
2
|
+
export declare const FmInputNumber: {
|
|
3
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
4
|
+
placeholder: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
defaultValue: {
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
default: number;
|
|
11
|
+
};
|
|
12
|
+
bType: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
modelValue: {
|
|
17
|
+
type: PropType<Number>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{
|
|
21
|
+
"onUpdate:modelValue"?: ((value: Number) => any) | undefined;
|
|
22
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
23
|
+
"update:modelValue": (value: Number) => any;
|
|
24
|
+
}, PublicProps, {
|
|
25
|
+
defaultValue: number;
|
|
26
|
+
placeholder: string;
|
|
27
|
+
bType: string;
|
|
28
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
29
|
+
P: {};
|
|
30
|
+
B: {};
|
|
31
|
+
D: {};
|
|
32
|
+
C: {};
|
|
33
|
+
M: {};
|
|
34
|
+
Defaults: {};
|
|
35
|
+
}, Readonly< ExtractPropTypes<{
|
|
36
|
+
placeholder: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
defaultValue: {
|
|
41
|
+
type: NumberConstructor;
|
|
42
|
+
default: number;
|
|
43
|
+
};
|
|
44
|
+
bType: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
modelValue: {
|
|
49
|
+
type: PropType<Number>;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
}>> & Readonly<{
|
|
53
|
+
"onUpdate:modelValue"?: ((value: Number) => any) | undefined;
|
|
54
|
+
}>, {}, {}, {}, {}, {
|
|
55
|
+
defaultValue: number;
|
|
56
|
+
placeholder: string;
|
|
57
|
+
bType: string;
|
|
58
|
+
}>;
|
|
59
|
+
__isFragment?: never;
|
|
60
|
+
__isTeleport?: never;
|
|
61
|
+
__isSuspense?: never;
|
|
62
|
+
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
63
|
+
placeholder: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
defaultValue: {
|
|
68
|
+
type: NumberConstructor;
|
|
69
|
+
default: number;
|
|
70
|
+
};
|
|
71
|
+
bType: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
modelValue: {
|
|
76
|
+
type: PropType<Number>;
|
|
77
|
+
required: true;
|
|
78
|
+
};
|
|
79
|
+
}>> & Readonly<{
|
|
80
|
+
"onUpdate:modelValue"?: ((value: Number) => any) | undefined;
|
|
81
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
82
|
+
"update:modelValue": (value: Number) => any;
|
|
83
|
+
}, string, {
|
|
84
|
+
defaultValue: number;
|
|
85
|
+
placeholder: string;
|
|
86
|
+
bType: string;
|
|
87
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
88
|
+
$slots: {
|
|
89
|
+
prepend?(_: {}): any;
|
|
90
|
+
append?(_: {}): any;
|
|
91
|
+
prefix?(_: {}): any;
|
|
92
|
+
suffix?(_: {}): any;
|
|
93
|
+
};
|
|
94
|
+
});
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
prepend?(_: {}): any;
|
|
6
|
+
append?(_: {}): any;
|
|
7
|
+
prefix?(_: {}): any;
|
|
8
|
+
suffix?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: any;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
15
|
+
placeholder: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
defaultValue: {
|
|
20
|
+
type: NumberConstructor;
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
23
|
+
bType: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
modelValue: {
|
|
28
|
+
type: PropType<Number>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
32
|
+
"update:modelValue": (value: Number) => any;
|
|
33
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
34
|
+
placeholder: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
defaultValue: {
|
|
39
|
+
type: NumberConstructor;
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
42
|
+
bType: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
modelValue: {
|
|
47
|
+
type: PropType<Number>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
}>> & Readonly<{
|
|
51
|
+
"onUpdate:modelValue"?: ((value: Number) => any) | undefined;
|
|
52
|
+
}>, {
|
|
53
|
+
defaultValue: number;
|
|
54
|
+
placeholder: string;
|
|
55
|
+
bType: string;
|
|
56
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
57
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
58
|
+
export default _default;
|
|
59
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
60
|
+
new (): {
|
|
61
|
+
$slots: S;
|
|
62
|
+
};
|
|
63
|
+
};
|
package/es/components/index.d.ts
CHANGED
|
@@ -132,6 +132,7 @@ export declare const FSelectTable: {
|
|
|
132
132
|
filterMethod: Function;
|
|
133
133
|
multiple: boolean;
|
|
134
134
|
modelValue: any;
|
|
135
|
+
inputWidth: number;
|
|
135
136
|
filterable: boolean;
|
|
136
137
|
isShowPagination: boolean;
|
|
137
138
|
useVirtual: boolean;
|
|
@@ -146,7 +147,6 @@ export declare const FSelectTable: {
|
|
|
146
147
|
remoteMethod: Function;
|
|
147
148
|
isShowInput: boolean;
|
|
148
149
|
inputAttr: Record<string, any>;
|
|
149
|
-
inputWidth: number;
|
|
150
150
|
selectWidth: number;
|
|
151
151
|
tableWidth: number;
|
|
152
152
|
isShowQuery: boolean;
|
|
@@ -298,6 +298,7 @@ export declare const FSelectTable: {
|
|
|
298
298
|
filterMethod: Function;
|
|
299
299
|
multiple: boolean;
|
|
300
300
|
modelValue: any;
|
|
301
|
+
inputWidth: number;
|
|
301
302
|
filterable: boolean;
|
|
302
303
|
isShowPagination: boolean;
|
|
303
304
|
useVirtual: boolean;
|
|
@@ -312,7 +313,6 @@ export declare const FSelectTable: {
|
|
|
312
313
|
remoteMethod: Function;
|
|
313
314
|
isShowInput: boolean;
|
|
314
315
|
inputAttr: Record<string, any>;
|
|
315
|
-
inputWidth: number;
|
|
316
316
|
selectWidth: number;
|
|
317
317
|
tableWidth: number;
|
|
318
318
|
isShowQuery: boolean;
|
|
@@ -470,6 +470,7 @@ export declare const FSelectTable: {
|
|
|
470
470
|
filterMethod: Function;
|
|
471
471
|
multiple: boolean;
|
|
472
472
|
modelValue: any;
|
|
473
|
+
inputWidth: number;
|
|
473
474
|
filterable: boolean;
|
|
474
475
|
isShowPagination: boolean;
|
|
475
476
|
useVirtual: boolean;
|
|
@@ -484,7 +485,6 @@ export declare const FSelectTable: {
|
|
|
484
485
|
remoteMethod: Function;
|
|
485
486
|
isShowInput: boolean;
|
|
486
487
|
inputAttr: Record<string, any>;
|
|
487
|
-
inputWidth: number;
|
|
488
488
|
selectWidth: number;
|
|
489
489
|
tableWidth: number;
|
|
490
490
|
isShowQuery: boolean;
|
|
@@ -141,6 +141,7 @@ declare const __VLS_component: DefineComponent<FSelectTableProps, {
|
|
|
141
141
|
filterMethod: Function;
|
|
142
142
|
multiple: boolean;
|
|
143
143
|
modelValue: any;
|
|
144
|
+
inputWidth: number;
|
|
144
145
|
filterable: boolean;
|
|
145
146
|
isShowPagination: boolean;
|
|
146
147
|
useVirtual: boolean;
|
|
@@ -155,7 +156,6 @@ declare const __VLS_component: DefineComponent<FSelectTableProps, {
|
|
|
155
156
|
remoteMethod: Function;
|
|
156
157
|
isShowInput: boolean;
|
|
157
158
|
inputAttr: Record<string, any>;
|
|
158
|
-
inputWidth: number;
|
|
159
159
|
selectWidth: number;
|
|
160
160
|
tableWidth: number;
|
|
161
161
|
isShowQuery: boolean;
|
package/es/index.mjs
CHANGED
|
@@ -50,6 +50,7 @@ export { useTagsViewRoutes } from './packages/stores/tagsViewRoutes.mjs';
|
|
|
50
50
|
export { useThemeConfig } from './packages/stores/themeConfig.mjs';
|
|
51
51
|
export { useUserInfo } from './packages/stores/userInfo.mjs';
|
|
52
52
|
export { useVxeTable } from './packages/hooks/useVxeTableOptionsHook.mjs';
|
|
53
|
+
export { usefminputdropdownstore } from './packages/stores/ainputdropdow.mjs';
|
|
53
54
|
export { validateFormWithScroll, validateFormWithScrollCallback } from './packages/utils/formValidate.mjs';
|
|
54
55
|
export { default as zhCn } from './packages/locale/lang/zh-cn.mjs';
|
|
55
56
|
|