@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
@@ -0,0 +1,387 @@
1
+ import { defineComponent, ref, reactive, computed, onMounted, resolveComponent, openBlock, createBlock, isRef, unref, withCtx, createVNode, createElementVNode, toDisplayString, withKeys, createTextVNode, createCommentVNode } from 'vue';
2
+ import '../../../api/index.mjs';
3
+ import { useBaseApi } from '../../../api/base/index.mjs';
4
+
5
+ const _hoisted_1 = { style: { "color": "#fff" } };
6
+ const _hoisted_2 = { style: { "padding": "8px 16px", "background-color": "var(--el-color-primary-light-9)", "border-left": "5px solid var(--el-color-primary)", "margin-bottom": "5px" } };
7
+ const _hoisted_3 = { style: { "padding": "8px 16px", "background-color": "var(--el-color-primary-light-9)", "border-left": "5px solid var(--el-color-primary)", "margin-bottom": "5px" } };
8
+ const _hoisted_4 = { style: { "margin-top": "10px" } };
9
+ const _hoisted_5 = { class: "dialog-footer" };
10
+ var _sfc_main = /* @__PURE__ */ defineComponent({
11
+ __name: "userSelectDialog",
12
+ props: {
13
+ visible: {
14
+ type: Boolean,
15
+ default: false
16
+ },
17
+ title: {
18
+ type: String,
19
+ default: ""
20
+ },
21
+ data: {
22
+ type: Array,
23
+ default: () => []
24
+ },
25
+ orgService: {
26
+ type: String,
27
+ default: "sysOrg"
28
+ },
29
+ orgAction: {
30
+ type: String,
31
+ default: "tree"
32
+ },
33
+ orgparas: {
34
+ type: Object,
35
+ default: () => {
36
+ }
37
+ },
38
+ userService: {
39
+ type: String,
40
+ default: "sysUser"
41
+ },
42
+ userAction: {
43
+ type: String,
44
+ default: "page"
45
+ },
46
+ userParams: {
47
+ type: Object,
48
+ default: () => {
49
+ }
50
+ }
51
+ },
52
+ emits: ["update:visible", "change"],
53
+ setup(__props, { emit: __emit }) {
54
+ let emits = __emit;
55
+ const props = __props;
56
+ const userList = ref([]);
57
+ let checkedUsersList = ref([]);
58
+ const state = reactive({
59
+ total: 0,
60
+ queryParams: {
61
+ orgId: -1,
62
+ page: 1,
63
+ pageSize: 50
64
+ }
65
+ });
66
+ let visibleDialog = computed({
67
+ get() {
68
+ return props.visible;
69
+ },
70
+ set() {
71
+ closeDialog();
72
+ }
73
+ });
74
+ onMounted(async () => {
75
+ await getUserList();
76
+ });
77
+ const resetQuery = () => {
78
+ state.queryParams = {};
79
+ handleQuery();
80
+ };
81
+ const handleNodeChange = async (node) => {
82
+ state.queryParams.orgId = node.id;
83
+ await handleQuery();
84
+ };
85
+ const getUserList = async () => {
86
+ var _a, _b, _c, _d;
87
+ let res = await useBaseApi(props.userService).post({ ...state.queryParams, ...props.userParams }, props.userAction);
88
+ userList.value = (_b = (_a = res.data.result) == null ? void 0 : _a.items) != null ? _b : [];
89
+ state.queryParams.total = (_d = (_c = res.data.result) == null ? void 0 : _c.total) != null ? _d : 0;
90
+ };
91
+ async function handleQuery() {
92
+ state.queryParams.pageNum = 1;
93
+ await getUserList();
94
+ }
95
+ function handleSelectUser(row) {
96
+ if (!row || row.id == "") return;
97
+ emits("change", { id: row.id, name: row.realName, data: row });
98
+ }
99
+ const handleSizeChange = (val) => {
100
+ state.queryParams.pageSize = val;
101
+ handleQuery();
102
+ };
103
+ const handleCurrentChange = (val) => {
104
+ state.queryParams.page = val;
105
+ handleQuery();
106
+ };
107
+ const closeDialog = () => {
108
+ checkedUsersList.value = [];
109
+ emits("update:visible", false);
110
+ };
111
+ return (_ctx, _cache) => {
112
+ const _component_ele_Edit = resolveComponent("ele-Edit");
113
+ const _component_el_icon = resolveComponent("el-icon");
114
+ const _component_FmTree = resolveComponent("FmTree");
115
+ const _component_el_col = resolveComponent("el-col");
116
+ const _component_el_input = resolveComponent("el-input");
117
+ const _component_el_form_item = resolveComponent("el-form-item");
118
+ const _component_el_button = resolveComponent("el-button");
119
+ const _component_el_button_group = resolveComponent("el-button-group");
120
+ const _component_el_form = resolveComponent("el-form");
121
+ const _component_ele_Plus = resolveComponent("ele-Plus");
122
+ const _component_el_table_column = resolveComponent("el-table-column");
123
+ const _component_el_table = resolveComponent("el-table");
124
+ const _component_el_pagination = resolveComponent("el-pagination");
125
+ const _component_el_card = resolveComponent("el-card");
126
+ const _component_el_row = resolveComponent("el-row");
127
+ const _component_el_dialog = resolveComponent("el-dialog");
128
+ return openBlock(), createBlock(_component_el_dialog, {
129
+ modelValue: unref(visibleDialog),
130
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(visibleDialog) ? visibleDialog.value = $event : visibleDialog = $event),
131
+ style: { "width": "70vw" },
132
+ "append-to-body": "",
133
+ draggable: "",
134
+ "close-on-click-modal": false
135
+ }, {
136
+ header: withCtx(() => [
137
+ createElementVNode("div", _hoisted_1, [
138
+ createVNode(_component_el_icon, {
139
+ size: "16",
140
+ style: { "margin-right": "3px", "display": "inline", "vertical-align": "middle" }
141
+ }, {
142
+ default: withCtx(() => [
143
+ createVNode(_component_ele_Edit)
144
+ ]),
145
+ _: 1
146
+ /* STABLE */
147
+ }),
148
+ createElementVNode(
149
+ "span",
150
+ null,
151
+ toDisplayString(_ctx.$t("\u9009\u62E9")) + toDisplayString(_ctx.$t(__props.title)),
152
+ 1
153
+ /* TEXT */
154
+ )
155
+ ])
156
+ ]),
157
+ footer: withCtx(() => [
158
+ createElementVNode("div", _hoisted_5, [
159
+ createVNode(_component_el_button, {
160
+ icon: "ele-CircleCloseFilled",
161
+ onClick: closeDialog
162
+ }, {
163
+ default: withCtx(() => [
164
+ createTextVNode(
165
+ toDisplayString(_ctx.$t("\u53D6\u6D88")),
166
+ 1
167
+ /* TEXT */
168
+ )
169
+ ]),
170
+ _: 1
171
+ /* STABLE */
172
+ }),
173
+ createCommentVNode(' <el-button type="primary" icon="ele-CircleCheckFilled" @click="saveDialog">\u786E\u5B9A</el-button> ')
174
+ ])
175
+ ]),
176
+ default: withCtx(() => [
177
+ createVNode(_component_el_row, { gutter: 10 }, {
178
+ default: withCtx(() => [
179
+ createVNode(_component_el_col, { span: 6 }, {
180
+ default: withCtx(() => [
181
+ createElementVNode(
182
+ "p",
183
+ _hoisted_2,
184
+ toDisplayString(_ctx.$t("\u673A\u6784")),
185
+ 1
186
+ /* TEXT */
187
+ ),
188
+ createVNode(_component_FmTree, {
189
+ ref: "orgTreeRef",
190
+ apiService: __props.orgService,
191
+ apiAction: __props.orgAction,
192
+ paras: __props.orgparas,
193
+ onNodeClick: handleNodeChange,
194
+ style: { "height": "calc(100% - 40px)", "overflow-y": "scroll", "overflow-x": "hidden" }
195
+ }, null, 8, ["apiService", "apiAction", "paras"])
196
+ ]),
197
+ _: 1
198
+ /* STABLE */
199
+ }),
200
+ createVNode(_component_el_col, { span: 18 }, {
201
+ default: withCtx(() => [
202
+ createElementVNode(
203
+ "p",
204
+ _hoisted_3,
205
+ toDisplayString(_ctx.$t(__props.title)) + toDisplayString(_ctx.$t("\u5217\u8868")),
206
+ 1
207
+ /* TEXT */
208
+ ),
209
+ createElementVNode("div", _hoisted_4, [
210
+ createVNode(_component_el_form, {
211
+ model: state.queryParams,
212
+ ref: "queryRef",
213
+ inline: true
214
+ }, {
215
+ default: withCtx(() => [
216
+ createVNode(_component_el_form_item, {
217
+ label: _ctx.$t("\u5173\u952E\u5B57")
218
+ }, {
219
+ default: withCtx(() => [
220
+ createVNode(_component_el_input, {
221
+ modelValue: state.queryParams.keyword,
222
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.queryParams.keyword = $event),
223
+ clearable: "",
224
+ style: { "width": "150px" },
225
+ onKeyup: withKeys(handleQuery, ["enter"])
226
+ }, null, 8, ["modelValue"])
227
+ ]),
228
+ _: 1
229
+ /* STABLE */
230
+ }, 8, ["label"]),
231
+ createVNode(_component_el_form_item, null, {
232
+ default: withCtx(() => [
233
+ createVNode(_component_el_button_group, null, {
234
+ default: withCtx(() => [
235
+ createVNode(_component_el_button, {
236
+ type: "primary",
237
+ icon: "ele-Search",
238
+ onClick: handleQuery
239
+ }, {
240
+ default: withCtx(() => [
241
+ createTextVNode(
242
+ toDisplayString(_ctx.$t("\u67E5\u8BE2")),
243
+ 1
244
+ /* TEXT */
245
+ )
246
+ ]),
247
+ _: 1
248
+ /* STABLE */
249
+ }),
250
+ createVNode(_component_el_button, {
251
+ icon: "ele-Refresh",
252
+ onClick: resetQuery
253
+ }, {
254
+ default: withCtx(() => [
255
+ createTextVNode(
256
+ toDisplayString(_ctx.$t("\u91CD\u7F6E")),
257
+ 1
258
+ /* TEXT */
259
+ )
260
+ ]),
261
+ _: 1
262
+ /* STABLE */
263
+ })
264
+ ]),
265
+ _: 1
266
+ /* STABLE */
267
+ }),
268
+ createCommentVNode(' <el-button type="primary" icon="ele-DArrowRight" plain style="margin-left: 10px" @click="handleSelectAllUser"> \u5168\u9009 </el-button> ')
269
+ ]),
270
+ _: 1
271
+ /* STABLE */
272
+ })
273
+ ]),
274
+ _: 1
275
+ /* STABLE */
276
+ }, 8, ["model"]),
277
+ createVNode(_component_el_card, {
278
+ class: "full-table",
279
+ shadow: "hover"
280
+ }, {
281
+ default: withCtx(() => [
282
+ createVNode(_component_el_table, {
283
+ ref: "refTable",
284
+ data: userList.value,
285
+ style: { "height": "calc(70vh - 96px)" }
286
+ }, {
287
+ default: withCtx(() => [
288
+ createVNode(_component_el_table_column, {
289
+ label: "\u64CD\u4F5C",
290
+ width: "60",
291
+ align: "center"
292
+ }, {
293
+ default: withCtx((scope) => [
294
+ createVNode(_component_el_button, {
295
+ link: "",
296
+ type: "primary",
297
+ onClick: ($event) => handleSelectUser(scope.row)
298
+ }, {
299
+ default: withCtx(() => [
300
+ createVNode(_component_el_icon, null, {
301
+ default: withCtx(() => [
302
+ createVNode(_component_ele_Plus)
303
+ ]),
304
+ _: 1
305
+ /* STABLE */
306
+ })
307
+ ]),
308
+ _: 1
309
+ /* STABLE */
310
+ }, 8, ["onClick"])
311
+ ]),
312
+ _: 1
313
+ /* STABLE */
314
+ }),
315
+ createVNode(_component_el_table_column, {
316
+ label: _ctx.$t("\u8D26\u53F7\u540D\u79F0"),
317
+ prop: "account",
318
+ align: "center",
319
+ "show-overflow-tooltip": true
320
+ }, null, 8, ["label"]),
321
+ createVNode(_component_el_table_column, {
322
+ label: _ctx.$t("\u771F\u5B9E\u59D3\u540D"),
323
+ prop: "realName",
324
+ align: "center",
325
+ "show-overflow-tooltip": true
326
+ }, null, 8, ["label"]),
327
+ createVNode(_component_el_table_column, {
328
+ label: _ctx.$t("\u8054\u7CFB\u65B9\u5F0F"),
329
+ prop: "phone",
330
+ align: "center",
331
+ "show-overflow-tooltip": true
332
+ }, null, 8, ["label"]),
333
+ createVNode(_component_el_table_column, {
334
+ label: _ctx.$t("\u5C97\u4F4D"),
335
+ prop: "posName",
336
+ align: "center",
337
+ "show-overflow-tooltip": true
338
+ }, null, 8, ["label"]),
339
+ createVNode(_component_el_table_column, {
340
+ label: _ctx.$t("\u5DE5\u53F7"),
341
+ prop: "jobNum",
342
+ align: "center",
343
+ "show-overflow-tooltip": true
344
+ }, null, 8, ["label"]),
345
+ createVNode(_component_el_table_column, {
346
+ label: _ctx.$t("\u6240\u5C5E\u673A\u6784"),
347
+ prop: "orgName",
348
+ align: "center",
349
+ "show-overflow-tooltip": true
350
+ }, null, 8, ["label"])
351
+ ]),
352
+ _: 1
353
+ /* STABLE */
354
+ }, 8, ["data"]),
355
+ createVNode(_component_el_pagination, {
356
+ currentPage: state.queryParams.page,
357
+ "page-size": state.queryParams.pageSize,
358
+ total: state.queryParams.total,
359
+ "page-sizes": [10, 20, 50, 100],
360
+ background: "",
361
+ onSizeChange: handleSizeChange,
362
+ onCurrentChange: handleCurrentChange,
363
+ layout: "total, sizes, prev, pager, next, jumper",
364
+ style: { "padding-bottom": "8px" }
365
+ }, null, 8, ["currentPage", "page-size", "total"])
366
+ ]),
367
+ _: 1
368
+ /* STABLE */
369
+ })
370
+ ])
371
+ ]),
372
+ _: 1
373
+ /* STABLE */
374
+ })
375
+ ]),
376
+ _: 1
377
+ /* STABLE */
378
+ })
379
+ ]),
380
+ _: 1
381
+ /* STABLE */
382
+ }, 8, ["modelValue"]);
383
+ };
384
+ }
385
+ });
386
+
387
+ export { _sfc_main as default };
@@ -0,0 +1,6 @@
1
+ import './index.vue.mjs';
2
+ import _sfc_main from './index.vue2.mjs';
3
+
4
+ const FmAutocomplete = _sfc_main;
5
+
6
+ export { FmAutocomplete };
@@ -0,0 +1,5 @@
1
+ import _sfc_main from './index.vue2.mjs';
2
+
3
+
4
+
5
+ export { _sfc_main as default };
@@ -0,0 +1,214 @@
1
+ import { defineComponent, useModel, ref, resolveComponent, openBlock, createBlock, withCtx, createVNode, withModifiers, unref, createElementVNode, toDisplayString, mergeModels } from 'vue';
2
+ import { Search } from '@element-plus/icons-vue';
3
+ import '../../api/index.mjs';
4
+ import './component/userSelectDialog.vue.mjs';
5
+ import { useBaseApi } from '../../api/base/index.mjs';
6
+ import _sfc_main$1 from './component/userSelectDialog.vue2.mjs';
7
+
8
+ const _hoisted_1 = { style: { "font-size": "14px", "line-height": "30px" } };
9
+ var _sfc_main = /* @__PURE__ */ defineComponent({
10
+ ...{
11
+ name: "FmAutocomplete"
12
+ },
13
+ __name: "index",
14
+ props: /* @__PURE__ */ mergeModels({
15
+ placeholder: {
16
+ type: String,
17
+ default: "\u8BF7\u8F93\u5165\u5FEB\u901F\u641C\u7D22\u9009\u62E9"
18
+ },
19
+ /**
20
+ * ato service name
21
+ */
22
+ atoService: {
23
+ type: String,
24
+ default: "planOrder"
25
+ },
26
+ /**
27
+ * ato service 下的方法
28
+ */
29
+ atoAction: {
30
+ type: String,
31
+ default: "autoQuerySearch"
32
+ },
33
+ top: {
34
+ type: Number,
35
+ default: 15
36
+ },
37
+ /**
38
+ * 值的属性值
39
+ */
40
+ vId: {
41
+ type: String,
42
+ default: "id"
43
+ },
44
+ /**
45
+ * 值的属性标签
46
+ */
47
+ vName: {
48
+ type: String,
49
+ default: "name"
50
+ },
51
+ /**
52
+ * 查询业务表ID
53
+ */
54
+ qId: {
55
+ type: Number,
56
+ default: 0
57
+ },
58
+ title: {
59
+ type: String,
60
+ default: ""
61
+ },
62
+ params: {
63
+ type: Object,
64
+ default: () => {
65
+ }
66
+ },
67
+ /**
68
+ * 打开类型 1 用户 2 单位
69
+ * @default 1
70
+ */
71
+ openType: {
72
+ type: Number,
73
+ default: 1
74
+ },
75
+ /**
76
+ * 打开参数
77
+ */
78
+ openParams: {
79
+ type: Object,
80
+ default: () => {
81
+ }
82
+ },
83
+ orgService: {
84
+ type: String,
85
+ default: "sysOrg"
86
+ },
87
+ orgAction: {
88
+ type: String,
89
+ default: "list"
90
+ },
91
+ orgparas: {
92
+ type: Object,
93
+ default: () => {
94
+ id: 0;
95
+ }
96
+ },
97
+ userService: {
98
+ type: String,
99
+ default: "sysUser"
100
+ },
101
+ userAction: {
102
+ type: String,
103
+ default: "page"
104
+ },
105
+ userParams: {
106
+ type: Object,
107
+ default: () => {
108
+ }
109
+ }
110
+ }, {
111
+ "name": {
112
+ required: true,
113
+ default: ""
114
+ },
115
+ "nameModifiers": {},
116
+ "id": {
117
+ required: true,
118
+ default: 0
119
+ },
120
+ "idModifiers": {}
121
+ }),
122
+ emits: /* @__PURE__ */ mergeModels(["select", "reset"], ["update:name", "update:id"]),
123
+ setup(__props, { emit: __emit }) {
124
+ const autoName = useModel(__props, "name");
125
+ const autoId = useModel(__props, "id");
126
+ const props = __props;
127
+ const visibleopenDialog = ref(false);
128
+ const emit = __emit;
129
+ const querySearchAsync = async (queryString, cb) => {
130
+ var _a;
131
+ resetValue();
132
+ const postdata = { keywork: queryString, id: props.qId, ...props.params };
133
+ const res = await useBaseApi(props.atoService).post(postdata, props.atoAction);
134
+ const data = (_a = res.data.result) != null ? _a : [];
135
+ if (data.length === 0) {
136
+ return cb([]);
137
+ }
138
+ const results = data.map((item) => ({
139
+ ...item,
140
+ displayText: `${item[props.vName]}`
141
+ // 自定义展示格式
142
+ //fullData: item // 保留原始对象
143
+ }));
144
+ cb(results);
145
+ };
146
+ const handleSelect = (item) => {
147
+ autoName.value = item[props.vName];
148
+ autoId.value = item[props.vId];
149
+ emit("select", item);
150
+ };
151
+ const resetValue = () => {
152
+ autoId.value = 0;
153
+ emit("reset");
154
+ };
155
+ const handleSelectDialogChange = (value) => {
156
+ visibleopenDialog.value = false;
157
+ autoName.value = value.name;
158
+ autoId.value = value.id;
159
+ emit("select", value);
160
+ };
161
+ return (_ctx, _cache) => {
162
+ const _component_el_icon = resolveComponent("el-icon");
163
+ const _component_el_autocomplete = resolveComponent("el-autocomplete");
164
+ return openBlock(), createBlock(_component_el_autocomplete, {
165
+ modelValue: autoName.value,
166
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => autoName.value = $event),
167
+ debounce: 500,
168
+ "fetch-suggestions": querySearchAsync,
169
+ placeholder: props.placeholder,
170
+ "trigger-on-focus": false,
171
+ onSelect: handleSelect,
172
+ style: { "margin-top": "-2px" }
173
+ }, {
174
+ default: withCtx(({ item }) => [
175
+ createElementVNode(
176
+ "div",
177
+ _hoisted_1,
178
+ toDisplayString(item[__props.vName]),
179
+ 1
180
+ /* TEXT */
181
+ )
182
+ ]),
183
+ append: withCtx(() => [
184
+ createVNode(_component_el_icon, {
185
+ color: "#E6A23C",
186
+ onClick: _cache[0] || (_cache[0] = withModifiers(() => visibleopenDialog.value = true, ["stop"]))
187
+ }, {
188
+ default: withCtx(() => [
189
+ createVNode(unref(Search))
190
+ ]),
191
+ _: 1
192
+ /* STABLE */
193
+ }),
194
+ createVNode(_sfc_main$1, {
195
+ visible: visibleopenDialog.value,
196
+ "onUpdate:visible": _cache[1] || (_cache[1] = ($event) => visibleopenDialog.value = $event),
197
+ orgService: __props.orgService,
198
+ orgAction: __props.orgAction,
199
+ orgparas: __props.orgparas,
200
+ title: __props.title,
201
+ userService: __props.userService,
202
+ userAction: __props.userAction,
203
+ userParams: __props.userParams,
204
+ onChange: handleSelectDialogChange
205
+ }, null, 8, ["visible", "orgService", "orgAction", "orgparas", "title", "userService", "userAction", "userParams"])
206
+ ]),
207
+ _: 1
208
+ /* STABLE */
209
+ }, 8, ["modelValue", "placeholder"]);
210
+ };
211
+ }
212
+ });
213
+
214
+ export { _sfc_main as default };
@@ -13,3 +13,4 @@ export { FSettings } from './fm-settings/index.mjs';
13
13
  export { FModifyRecord } from './modifyRecord/index.mjs';
14
14
  export { Fminputdropdown } from './fm-inputdropdown/index.mjs';
15
15
  export { FmInputNumber } from './fm-inputnumber/index.mjs';
16
+ export { FmAutocomplete } from './fm-autocomplete/index.mjs';