@fmdevui/fm-dev 1.0.37 → 1.0.38
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/stores/userInfo.mjs +1 -0
- package/index.js +2 -4
- package/index.min.js +23 -23
- package/index.min.mjs +18 -18
- package/index.mjs +2 -4
- package/lib/packages/core/stores/userInfo.js +1 -0
- package/package.json +1 -1
- /package/es/{defaults.css → make-installer.css} +0 -0
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fm-dev v1.0.
|
|
1
|
+
/*! fm-dev v1.0.38 */
|
|
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, resolveDynamicComponent, effectScope, getCurrentInstance, shallowRef, isRef as isRef$1, inject, onUnmounted, h, Text, 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';
|
|
@@ -49934,9 +49934,7 @@ const useUserInfo = defineStore("userInfo", {
|
|
|
49934
49934
|
}
|
|
49935
49935
|
});
|
|
49936
49936
|
const setDictLangMessageAsync = async (dict) => {
|
|
49937
|
-
|
|
49938
|
-
const text = i18n.global.t(dict.langMessage);
|
|
49939
|
-
dict.label = text !== dict.langMessage && !text.endsWith(`${dict.typeCode}_${dict.value}`) ? text : dict.label;
|
|
49937
|
+
return;
|
|
49940
49938
|
};
|
|
49941
49939
|
|
|
49942
49940
|
function authDirective(app) {
|
|
@@ -150,6 +150,7 @@ const useUserInfo = pinia.defineStore("userInfo", {
|
|
|
150
150
|
}
|
|
151
151
|
});
|
|
152
152
|
const setDictLangMessageAsync = async (dict) => {
|
|
153
|
+
return;
|
|
153
154
|
dict.langMessage = `message.dictType.${dict.typeCode}_${dict.value}`;
|
|
154
155
|
const text = index$4.i18n.global.t(dict.langMessage);
|
|
155
156
|
dict.label = text !== dict.langMessage && !text.endsWith(`${dict.typeCode}_${dict.value}`) ? text : dict.label;
|
package/package.json
CHANGED
|
File without changes
|