@fmdevui/fm-dev 1.0.115 → 1.0.116
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/core/index.d.ts +1 -0
- package/es/core/plugins/index.d.ts +1 -0
- package/es/index.mjs +3 -0
- package/es/packages/core/hook/useChart.mjs +2 -0
- package/es/packages/core/index.mjs +4 -0
- package/es/packages/core/plugins/index.mjs +3 -0
- package/index.js +1526 -162
- package/index.min.js +60 -59
- package/index.min.mjs +60 -59
- package/index.mjs +1524 -162
- package/lib/core/index.d.ts +1 -0
- package/lib/core/plugins/index.d.ts +1 -0
- package/lib/index.js +4 -0
- package/lib/packages/core/hook/useChart.js +2 -0
- package/lib/packages/core/index.js +5 -0
- package/lib/packages/core/plugins/index.js +9 -0
- package/package.json +1 -1
- /package/es/{make-installer.css → defaults.css} +0 -0
- /package/lib/{index.css → make-installer.css} +0 -0
package/es/core/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './echarts';
|
package/es/index.mjs
CHANGED
|
@@ -39,6 +39,9 @@ export { auth, authAll, auths, hAuth, hAuthAll, hAuths } from './packages/core/a
|
|
|
39
39
|
export { useDateTimeShortCust } from './packages/core/hook/dateTimeShortCust.mjs';
|
|
40
40
|
export { useVxeTable } from './packages/core/hook/useVxeTableOptionsHook.mjs';
|
|
41
41
|
export { useChart, useChartComponent, useChartOps } from './packages/core/hook/useChart.mjs';
|
|
42
|
+
import * as core from './node_modules/.pnpm/echarts@6.0.0/node_modules/echarts/core.mjs';
|
|
43
|
+
export { core as echarts };
|
|
44
|
+
export { graphic } from './packages/core/plugins/echarts.mjs';
|
|
42
45
|
export { addressparsing } from './packages/core/utils/cityparess/index.mjs';
|
|
43
46
|
|
|
44
47
|
const install = installer.install;
|
|
@@ -72,6 +72,8 @@ function useChart(options = {}) {
|
|
|
72
72
|
let menuOpenStopHandle = null;
|
|
73
73
|
let menuTypeStopHandle = null;
|
|
74
74
|
const setupMenuWatchers = () => {
|
|
75
|
+
nextTick(requestAnimationResize);
|
|
76
|
+
setTimeout(() => multiDelayResize(MENU_RESIZE_DELAYS), 0);
|
|
75
77
|
};
|
|
76
78
|
const cleanupMenuWatchers = () => {
|
|
77
79
|
menuOpenStopHandle?.();
|
|
@@ -10,6 +10,7 @@ export { auth, authAll, auths, hAuth, hAuthAll, hAuths } from './auth/index.mjs'
|
|
|
10
10
|
export { useDateTimeShortCust } from './hook/dateTimeShortCust.mjs';
|
|
11
11
|
export { useVxeTable } from './hook/useVxeTableOptionsHook.mjs';
|
|
12
12
|
export { useChart, useChartComponent, useChartOps } from './hook/useChart.mjs';
|
|
13
|
+
import './plugins/index.mjs';
|
|
13
14
|
export { addressparsing } from './utils/cityparess/index.mjs';
|
|
14
15
|
import './types/index.mjs';
|
|
15
16
|
export { elSvg } from './ui/components/svgIcon/index.mjs';
|
|
@@ -38,3 +39,6 @@ export { AppItem, getAppItemData, getAppItemText } from './utils/comm/gloabdata.
|
|
|
38
39
|
export { default as commonFunction } from './utils/comm/commonFunction.mjs';
|
|
39
40
|
export { commonFunctionObj } from './utils/comm/index.mjs';
|
|
40
41
|
export { PUB } from './utils/const/index.mjs';
|
|
42
|
+
import * as core from '../../node_modules/.pnpm/echarts@6.0.0/node_modules/echarts/core.mjs';
|
|
43
|
+
export { core as echarts };
|
|
44
|
+
export { graphic } from './plugins/echarts.mjs';
|