@fmdeui/fmui 1.0.13 → 1.0.15
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/index.d.ts +2 -1
- package/es/index.mjs +2 -1
- package/es/make-installer.mjs +4 -6
- package/index.js +6 -7
- package/index.min.js +3 -3
- package/index.min.mjs +3 -3
- package/index.mjs +6 -8
- package/lib/{index.css → component.css} +2 -2
- package/lib/index.d.ts +2 -1
- package/lib/index.js +4 -2
- package/lib/make-installer.js +4 -6
- 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/es/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { default as emitter } from './utils/mitt';
|
|
|
4
4
|
import { default as Watermark } from './utils/watermark';
|
|
5
5
|
import { default as commonFunction } from './hooks/commonFunction';
|
|
6
6
|
import { default as other } from './hooks/other';
|
|
7
|
+
import { default as router } from './router';
|
|
7
8
|
import { EmptyArrayType } from './types';
|
|
8
9
|
import { MessageHandler } from 'element-plus';
|
|
9
10
|
import { App } from 'vue';
|
|
@@ -36,7 +37,7 @@ declare const commonFun: {
|
|
|
36
37
|
value: () => Date[];
|
|
37
38
|
}[];
|
|
38
39
|
};
|
|
39
|
-
export { setIntroduction, emitter as mittBus, Watermark, other, commonFunction, commonFun, setCssCdn, setJsCdn };
|
|
40
|
+
export { setIntroduction, emitter as mittBus, Watermark, other, commonFunction, commonFun, setCssCdn, setJsCdn, router };
|
|
40
41
|
export { version } from './version';
|
|
41
42
|
export declare const install: (app: App) => void;
|
|
42
43
|
export default installer;
|
package/es/index.mjs
CHANGED
|
@@ -4,12 +4,12 @@ export { default as mittBus } from './packages/utils/mitt.mjs';
|
|
|
4
4
|
export { default as Watermark } from './packages/utils/watermark.mjs';
|
|
5
5
|
import commonFunction from './packages/hooks/commonFunction.mjs';
|
|
6
6
|
export { default as other } from './packages/hooks/other.mjs';
|
|
7
|
+
export { initRouter } from './packages/router/index.mjs';
|
|
7
8
|
import './packages/types/index.mjs';
|
|
8
9
|
export { AccountTypeEnum, HttpMethodEnum, JobCreateTypeEnum } from './packages/api/index.mjs';
|
|
9
10
|
import './packages/utils/index.mjs';
|
|
10
11
|
import './packages/stores/index.mjs';
|
|
11
12
|
import './packages/hooks/index.mjs';
|
|
12
|
-
export { initRouter } from './packages/router/index.mjs';
|
|
13
13
|
export { getCountryCode, i18n, iso_3166_1_CountryList, languageList, mergMessage, setupI18n } from './packages/locale/index.mjs';
|
|
14
14
|
export { version } from './version.mjs';
|
|
15
15
|
export { Local, Session } from './packages/utils/storage.mjs';
|
|
@@ -34,6 +34,7 @@ export { initBackEndControlRoutes, setDynamicViewsModules } from './packages/rou
|
|
|
34
34
|
export { initFrontEndControlRoutes } from './packages/router/frontEnd.mjs';
|
|
35
35
|
export { judgementIdCard, verifiyNumberInteger, verifyAccount, verifyAndSpace, verifyCarNum, verifyCnAndSpace, verifyEmail, verifyEnAndSpace, verifyFullName, verifyIPAddress, verifyIdCard, verifyNumberCnUppercase, verifyNumberComma, verifyNumberIntegerAndFloat, verifyNumberPercentage, verifyNumberPercentageFloat, verifyPassword, verifyPasswordPowerful, verifyPasswordStrength, verifyPhone, verifyPostalCode, verifyTelPhone, verifyTextColor, verifyUrl } from './packages/utils/toolsValidate.mjs';
|
|
36
36
|
export { loadSysInfo, updateFavicon } from './packages/hooks/sysInfo.mjs';
|
|
37
|
+
export { router } from './packages/router/createRouter.mjs';
|
|
37
38
|
export { saulVModel } from './packages/utils/saulVModel.mjs';
|
|
38
39
|
export { signalR } from './packages/utils/signalR.mjs';
|
|
39
40
|
export { signatureByKSort } from './packages/utils/data-signature.mjs';
|
package/es/make-installer.mjs
CHANGED
|
@@ -6,6 +6,7 @@ import { elSvg } from './packages/components/svgIcon/index.mjs';
|
|
|
6
6
|
|
|
7
7
|
const makeInstaller = (components = []) => {
|
|
8
8
|
const install = (app) => {
|
|
9
|
+
app.use(pinia);
|
|
9
10
|
components.forEach(
|
|
10
11
|
(component) => {
|
|
11
12
|
if (!app._context.components[component.name]) {
|
|
@@ -13,12 +14,9 @@ const makeInstaller = (components = []) => {
|
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
);
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
directive(app);
|
|
20
|
-
app.use(setupVXETable);
|
|
21
|
-
}
|
|
17
|
+
elSvg(app);
|
|
18
|
+
directive(app);
|
|
19
|
+
setupVXETable(app);
|
|
22
20
|
};
|
|
23
21
|
return {
|
|
24
22
|
install
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.15 */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('pinia'), require('crypto-js'), require('xlsx-js-style'), require('element-plus'), require('vue'), require('@element-plus/icons-vue'), require('axios'), require('js-cookie'), require('@microsoft/signalr'), require('vxe-table'), require('@vxe-ui/plugin-render-element'), require('@vxe-ui/plugin-export-xlsx'), require('vxe-pc-ui'), require('vue-i18n'), require('exceljs'), require('lodash-es'), require('@vueuse/core'), require('mitt'), require('vue-router'), require('nprogress')) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports', 'pinia', 'crypto-js', 'xlsx-js-style', 'element-plus', 'vue', '@element-plus/icons-vue', 'axios', 'js-cookie', '@microsoft/signalr', 'vxe-table', '@vxe-ui/plugin-render-element', '@vxe-ui/plugin-export-xlsx', 'vxe-pc-ui', 'vue-i18n', 'exceljs', 'lodash-es', '@vueuse/core', 'mitt', 'vue-router', 'nprogress'], factory) :
|
|
@@ -22231,6 +22231,7 @@
|
|
|
22231
22231
|
|
|
22232
22232
|
const makeInstaller = (components = []) => {
|
|
22233
22233
|
const install = (app) => {
|
|
22234
|
+
app.use(pinia);
|
|
22234
22235
|
components.forEach(
|
|
22235
22236
|
(component) => {
|
|
22236
22237
|
if (!app._context.components[component.name]) {
|
|
@@ -22238,12 +22239,9 @@
|
|
|
22238
22239
|
}
|
|
22239
22240
|
}
|
|
22240
22241
|
);
|
|
22241
|
-
|
|
22242
|
-
|
|
22243
|
-
|
|
22244
|
-
directive(app);
|
|
22245
|
-
app.use(setupVXETable);
|
|
22246
|
-
}
|
|
22242
|
+
elSvg(app);
|
|
22243
|
+
directive(app);
|
|
22244
|
+
setupVXETable(app);
|
|
22247
22245
|
};
|
|
22248
22246
|
return {
|
|
22249
22247
|
install
|
|
@@ -23064,6 +23062,7 @@
|
|
|
23064
23062
|
exports.removeDuplicate = removeDuplicate;
|
|
23065
23063
|
exports.request2 = request2;
|
|
23066
23064
|
exports.roles = roles;
|
|
23065
|
+
exports.router = router;
|
|
23067
23066
|
exports.saulVModel = saulVModel;
|
|
23068
23067
|
exports.service = service;
|
|
23069
23068
|
exports.setCssCdn = setCssCdn;
|