@fmdeui/fmui 1.0.14 → 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/make-installer.mjs +4 -6
- package/index.js +5 -7
- package/index.min.js +2 -2
- package/index.min.mjs +2 -2
- package/index.mjs +5 -7
- 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/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
|