@fmdevui/fm-dev 1.0.53 → 1.0.54
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/packages/core/ui/components/fmautocomplete/index.vue2.mjs +0 -1
- package/es/packages/core/ui/components/fmselect/index.vue2.mjs +1 -1
- package/index.js +2 -3
- package/index.min.js +3 -3
- package/index.min.mjs +3 -3
- package/index.mjs +2 -3
- package/lib/packages/core/ui/components/fmautocomplete/index.vue2.js +0 -1
- package/lib/packages/core/ui/components/fmselect/index.vue2.js +1 -1
- package/package.json +1 -1
- /package/es/{component.css → defaults.css} +0 -0
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fm-dev v1.0.
|
|
1
|
+
/*! fm-dev v1.0.54 */
|
|
2
2
|
import { defineComponent, reactive, computed, watch, resolveComponent, createBlock, openBlock, withCtx, createVNode, createElementVNode, createTextVNode, toDisplayString as toDisplayString$1, withDirectives, createElementBlock, Fragment, renderList, vShow, ref, onMounted, nextTick, normalizeStyle, createCommentVNode, normalizeClass, withModifiers, mergeModels, useModel, effectScope, getCurrentInstance, shallowRef, isRef as isRef$1, inject, onUnmounted, h, Text, resolveDynamicComponent, markRaw, toRaw as toRaw$1, hasInjectionContext, unref, isReactive as isReactive$1, toRef, getCurrentScope, onScopeDispose, toRefs, resolveDirective } from 'vue';
|
|
3
3
|
import crypto from 'crypto';
|
|
4
4
|
import require$$0 from 'url';
|
|
@@ -930,7 +930,7 @@ var _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
930
930
|
const props = __props;
|
|
931
931
|
const emit = __emit;
|
|
932
932
|
const handleSelectChange = () => {
|
|
933
|
-
const fitem = props.optionData.find((item) => item.
|
|
933
|
+
const fitem = props.optionData.find((item) => item[props.bvalue] == modeValueId.value);
|
|
934
934
|
modeValueName.value = fitem[props.blabel];
|
|
935
935
|
emit("change", fitem);
|
|
936
936
|
};
|
|
@@ -23827,7 +23827,6 @@ var _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
23827
23827
|
emit("select", item);
|
|
23828
23828
|
};
|
|
23829
23829
|
const resetValue = () => {
|
|
23830
|
-
autoName.value = "";
|
|
23831
23830
|
autoId.value = 0;
|
|
23832
23831
|
emit("reset");
|
|
23833
23832
|
};
|
|
@@ -48,7 +48,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
48
48
|
const props = __props;
|
|
49
49
|
const emit = __emit;
|
|
50
50
|
const handleSelectChange = () => {
|
|
51
|
-
const fitem = props.optionData.find((item) => item.
|
|
51
|
+
const fitem = props.optionData.find((item) => item[props.bvalue] == modeValueId.value);
|
|
52
52
|
modeValueName.value = fitem[props.blabel];
|
|
53
53
|
emit("change", fitem);
|
|
54
54
|
};
|
package/package.json
CHANGED
|
File without changes
|