@fmdeui/fmui 1.0.92 → 1.0.94

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.
Files changed (37) hide show
  1. package/es/component.mjs +3 -1
  2. package/es/components/fm-autocomplete/component/userSelectDialog.vue.d.ts +97 -0
  3. package/es/components/fm-autocomplete/index.d.ts +184 -0
  4. package/es/components/fm-autocomplete/index.vue.d.ts +229 -0
  5. package/es/components/index.d.ts +1 -0
  6. package/es/packages/components/fm-autocomplete/component/userSelectDialog.vue.mjs +5 -0
  7. package/es/packages/components/fm-autocomplete/component/userSelectDialog.vue2.mjs +387 -0
  8. package/es/packages/components/fm-autocomplete/index.mjs +6 -0
  9. package/es/packages/components/fm-autocomplete/index.vue.mjs +5 -0
  10. package/es/packages/components/fm-autocomplete/index.vue2.mjs +214 -0
  11. package/es/packages/components/index.mjs +1 -0
  12. package/index.js +677 -87
  13. package/index.min.js +6 -6
  14. package/index.min.mjs +7 -7
  15. package/index.mjs +678 -88
  16. package/lib/component.js +3 -1
  17. package/lib/components/fm-autocomplete/component/userSelectDialog.vue.d.ts +97 -0
  18. package/lib/components/fm-autocomplete/index.d.ts +184 -0
  19. package/lib/components/fm-autocomplete/index.vue.d.ts +229 -0
  20. package/lib/components/index.d.ts +1 -0
  21. package/lib/packages/components/fm-autocomplete/component/userSelectDialog.vue.js +9 -0
  22. package/lib/packages/components/fm-autocomplete/component/userSelectDialog.vue2.js +391 -0
  23. package/lib/packages/components/fm-autocomplete/index.js +8 -0
  24. package/lib/packages/components/fm-autocomplete/index.vue.js +9 -0
  25. package/lib/packages/components/fm-autocomplete/index.vue2.js +218 -0
  26. package/lib/packages/components/index.js +8 -6
  27. package/locale/en.js +1 -1
  28. package/locale/en.min.js +1 -1
  29. package/locale/en.min.mjs +1 -1
  30. package/locale/en.mjs +1 -1
  31. package/locale/zh-cn.js +1 -1
  32. package/locale/zh-cn.min.js +1 -1
  33. package/locale/zh-cn.min.mjs +1 -1
  34. package/locale/zh-cn.mjs +1 -1
  35. package/package.json +1 -1
  36. /package/{lib → es}/component.css +0 -0
  37. /package/{es/index.css → lib/version.css} +0 -0
package/es/component.mjs CHANGED
@@ -14,6 +14,7 @@ import { FModifyRecord } from './packages/components/modifyRecord/index.mjs';
14
14
  import { FmTree } from './packages/components/fmtree/index.mjs';
15
15
  import { FmCascader } from './packages/components/fmcascader/index.mjs';
16
16
  import { FmInputNumber } from './packages/components/fm-inputnumber/index.mjs';
17
+ import { FmAutocomplete } from './packages/components/fm-autocomplete/index.mjs';
17
18
 
18
19
  const plugins = [
19
20
  FButton,
@@ -31,7 +32,8 @@ const plugins = [
31
32
  FModifyRecord,
32
33
  FmTree,
33
34
  FmCascader,
34
- FmInputNumber
35
+ FmInputNumber,
36
+ FmAutocomplete
35
37
  ];
36
38
 
37
39
  export { plugins as default };
@@ -0,0 +1,97 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ visible: {
4
+ type: BooleanConstructor;
5
+ default: boolean;
6
+ };
7
+ title: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ data: {
12
+ type: ArrayConstructor;
13
+ default: () => never[];
14
+ };
15
+ orgService: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ orgAction: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ orgparas: {
24
+ type: ObjectConstructor;
25
+ default: () => void;
26
+ };
27
+ userService: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ userAction: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ userParams: {
36
+ type: ObjectConstructor;
37
+ default: () => void;
38
+ };
39
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
40
+ change: (...args: any[]) => void;
41
+ "update:visible": (...args: any[]) => void;
42
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
43
+ visible: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ title: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ data: {
52
+ type: ArrayConstructor;
53
+ default: () => never[];
54
+ };
55
+ orgService: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ orgAction: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ orgparas: {
64
+ type: ObjectConstructor;
65
+ default: () => void;
66
+ };
67
+ userService: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ userAction: {
72
+ type: StringConstructor;
73
+ default: string;
74
+ };
75
+ userParams: {
76
+ type: ObjectConstructor;
77
+ default: () => void;
78
+ };
79
+ }>> & Readonly<{
80
+ onChange?: ((...args: any[]) => any) | undefined;
81
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
82
+ }>, {
83
+ title: string;
84
+ data: unknown[];
85
+ visible: boolean;
86
+ orgService: string;
87
+ orgAction: string;
88
+ orgparas: Record<string, any>;
89
+ userService: string;
90
+ userAction: string;
91
+ userParams: Record<string, any>;
92
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {
93
+ orgTreeRef: unknown;
94
+ queryRef: unknown;
95
+ refTable: unknown;
96
+ }, any>;
97
+ export default _default;
@@ -0,0 +1,184 @@
1
+ import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
3
+ placeholder: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ atoService: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ atoAction: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ top: {
16
+ type: NumberConstructor;
17
+ default: number;
18
+ };
19
+ vId: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ vName: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ qId: {
28
+ type: NumberConstructor;
29
+ default: number;
30
+ };
31
+ title: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ params: {
36
+ type: ObjectConstructor;
37
+ default: () => void;
38
+ };
39
+ openType: {
40
+ type: NumberConstructor;
41
+ default: number;
42
+ };
43
+ openParams: {
44
+ type: ObjectConstructor;
45
+ default: () => void;
46
+ };
47
+ orgService: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ orgAction: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ orgparas: {
56
+ type: ObjectConstructor;
57
+ default: () => void;
58
+ };
59
+ userService: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ userAction: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ };
67
+ userParams: {
68
+ type: ObjectConstructor;
69
+ default: () => void;
70
+ };
71
+ name: {
72
+ type: PropType<string>;
73
+ required: true;
74
+ };
75
+ id: {
76
+ type: PropType<Number>;
77
+ required: true;
78
+ };
79
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
80
+ reset: (...args: any[]) => void;
81
+ select: (...args: any[]) => void;
82
+ "update:id": (value: Number) => void;
83
+ "update:name": (value: string) => void;
84
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
85
+ placeholder: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ atoService: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ atoAction: {
94
+ type: StringConstructor;
95
+ default: string;
96
+ };
97
+ top: {
98
+ type: NumberConstructor;
99
+ default: number;
100
+ };
101
+ vId: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ vName: {
106
+ type: StringConstructor;
107
+ default: string;
108
+ };
109
+ qId: {
110
+ type: NumberConstructor;
111
+ default: number;
112
+ };
113
+ title: {
114
+ type: StringConstructor;
115
+ default: string;
116
+ };
117
+ params: {
118
+ type: ObjectConstructor;
119
+ default: () => void;
120
+ };
121
+ openType: {
122
+ type: NumberConstructor;
123
+ default: number;
124
+ };
125
+ openParams: {
126
+ type: ObjectConstructor;
127
+ default: () => void;
128
+ };
129
+ orgService: {
130
+ type: StringConstructor;
131
+ default: string;
132
+ };
133
+ orgAction: {
134
+ type: StringConstructor;
135
+ default: string;
136
+ };
137
+ orgparas: {
138
+ type: ObjectConstructor;
139
+ default: () => void;
140
+ };
141
+ userService: {
142
+ type: StringConstructor;
143
+ default: string;
144
+ };
145
+ userAction: {
146
+ type: StringConstructor;
147
+ default: string;
148
+ };
149
+ userParams: {
150
+ type: ObjectConstructor;
151
+ default: () => void;
152
+ };
153
+ name: {
154
+ type: PropType<string>;
155
+ required: true;
156
+ };
157
+ id: {
158
+ type: PropType<Number>;
159
+ required: true;
160
+ };
161
+ }>> & Readonly<{
162
+ onReset?: ((...args: any[]) => any) | undefined;
163
+ onSelect?: ((...args: any[]) => any) | undefined;
164
+ "onUpdate:id"?: ((value: Number) => any) | undefined;
165
+ "onUpdate:name"?: ((value: string) => any) | undefined;
166
+ }>, {
167
+ top: number;
168
+ params: Record<string, any>;
169
+ title: string;
170
+ placeholder: string;
171
+ vId: string;
172
+ orgService: string;
173
+ orgAction: string;
174
+ orgparas: Record<string, any>;
175
+ userService: string;
176
+ userAction: string;
177
+ userParams: Record<string, any>;
178
+ atoService: string;
179
+ atoAction: string;
180
+ vName: string;
181
+ qId: number;
182
+ openType: number;
183
+ openParams: Record<string, any>;
184
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,229 @@
1
+ import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ placeholder: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ /**
8
+ * ato service name
9
+ */
10
+ atoService: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ /**
15
+ * ato service 下的方法
16
+ */
17
+ atoAction: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ top: {
22
+ type: NumberConstructor;
23
+ default: number;
24
+ };
25
+ /**
26
+ * 值的属性值
27
+ */
28
+ vId: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ /**
33
+ * 值的属性标签
34
+ */
35
+ vName: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ /**
40
+ * 查询业务表ID
41
+ */
42
+ qId: {
43
+ type: NumberConstructor;
44
+ default: number;
45
+ };
46
+ title: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ params: {
51
+ type: ObjectConstructor;
52
+ default: () => void;
53
+ };
54
+ /**
55
+ * 打开类型 1 用户 2 单位
56
+ * @default 1
57
+ */
58
+ openType: {
59
+ type: NumberConstructor;
60
+ default: number;
61
+ };
62
+ /**
63
+ * 打开参数
64
+ */
65
+ openParams: {
66
+ type: ObjectConstructor;
67
+ default: () => void;
68
+ };
69
+ orgService: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ orgAction: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
77
+ orgparas: {
78
+ type: ObjectConstructor;
79
+ default: () => void;
80
+ };
81
+ userService: {
82
+ type: StringConstructor;
83
+ default: string;
84
+ };
85
+ userAction: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ userParams: {
90
+ type: ObjectConstructor;
91
+ default: () => void;
92
+ };
93
+ name: {
94
+ type: PropType<string>;
95
+ required: true;
96
+ };
97
+ id: {
98
+ type: PropType<Number>;
99
+ required: true;
100
+ };
101
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
102
+ reset: (...args: any[]) => void;
103
+ select: (...args: any[]) => void;
104
+ "update:id": (value: Number) => void;
105
+ "update:name": (value: string) => void;
106
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
107
+ placeholder: {
108
+ type: StringConstructor;
109
+ default: string;
110
+ };
111
+ /**
112
+ * ato service name
113
+ */
114
+ atoService: {
115
+ type: StringConstructor;
116
+ default: string;
117
+ };
118
+ /**
119
+ * ato service 下的方法
120
+ */
121
+ atoAction: {
122
+ type: StringConstructor;
123
+ default: string;
124
+ };
125
+ top: {
126
+ type: NumberConstructor;
127
+ default: number;
128
+ };
129
+ /**
130
+ * 值的属性值
131
+ */
132
+ vId: {
133
+ type: StringConstructor;
134
+ default: string;
135
+ };
136
+ /**
137
+ * 值的属性标签
138
+ */
139
+ vName: {
140
+ type: StringConstructor;
141
+ default: string;
142
+ };
143
+ /**
144
+ * 查询业务表ID
145
+ */
146
+ qId: {
147
+ type: NumberConstructor;
148
+ default: number;
149
+ };
150
+ title: {
151
+ type: StringConstructor;
152
+ default: string;
153
+ };
154
+ params: {
155
+ type: ObjectConstructor;
156
+ default: () => void;
157
+ };
158
+ /**
159
+ * 打开类型 1 用户 2 单位
160
+ * @default 1
161
+ */
162
+ openType: {
163
+ type: NumberConstructor;
164
+ default: number;
165
+ };
166
+ /**
167
+ * 打开参数
168
+ */
169
+ openParams: {
170
+ type: ObjectConstructor;
171
+ default: () => void;
172
+ };
173
+ orgService: {
174
+ type: StringConstructor;
175
+ default: string;
176
+ };
177
+ orgAction: {
178
+ type: StringConstructor;
179
+ default: string;
180
+ };
181
+ orgparas: {
182
+ type: ObjectConstructor;
183
+ default: () => void;
184
+ };
185
+ userService: {
186
+ type: StringConstructor;
187
+ default: string;
188
+ };
189
+ userAction: {
190
+ type: StringConstructor;
191
+ default: string;
192
+ };
193
+ userParams: {
194
+ type: ObjectConstructor;
195
+ default: () => void;
196
+ };
197
+ name: {
198
+ type: PropType<string>;
199
+ required: true;
200
+ };
201
+ id: {
202
+ type: PropType<Number>;
203
+ required: true;
204
+ };
205
+ }>> & Readonly<{
206
+ onReset?: ((...args: any[]) => any) | undefined;
207
+ onSelect?: ((...args: any[]) => any) | undefined;
208
+ "onUpdate:id"?: ((value: Number) => any) | undefined;
209
+ "onUpdate:name"?: ((value: string) => any) | undefined;
210
+ }>, {
211
+ top: number;
212
+ params: Record<string, any>;
213
+ title: string;
214
+ placeholder: string;
215
+ vId: string;
216
+ orgService: string;
217
+ orgAction: string;
218
+ orgparas: Record<string, any>;
219
+ userService: string;
220
+ userAction: string;
221
+ userParams: Record<string, any>;
222
+ atoService: string;
223
+ atoAction: string;
224
+ vName: string;
225
+ qId: number;
226
+ openType: number;
227
+ openParams: Record<string, any>;
228
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
229
+ export default _default;
@@ -13,3 +13,4 @@ export * from './fm-settings';
13
13
  export * from './modifyRecord';
14
14
  export * from './fm-inputdropdown';
15
15
  export * from './fm-inputnumber';
16
+ export * from './fm-autocomplete';
@@ -0,0 +1,5 @@
1
+ import _sfc_main from './userSelectDialog.vue2.mjs';
2
+
3
+
4
+
5
+ export { _sfc_main as default };