@web-utils/component 2.7.33 → 2.7.35
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/dist/components/e-charts/index.js +1 -21
- package/dist/index.es.js +2 -22
- package/package.json +1 -1
- package/web-types.json +1 -1
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import echarts from "echarts/
|
|
2
|
-
import { BarChart, LineChart, PieChart, RadarChart, MapChart, ScatterChart, EffectScatterChart, PictorialBarChart } from "echarts/charts";
|
|
3
|
-
import { TitleComponent, TooltipComponent, GridComponent, LegendComponent, DatasetComponent, PolarComponent } from "echarts/components";
|
|
4
|
-
import { CanvasRenderer } from "echarts/renderers";
|
|
1
|
+
import * as echarts from "echarts/core";
|
|
5
2
|
import { isString } from "@web-utils/core";
|
|
6
3
|
import { debounce } from "@web-utils/integrations/lodash";
|
|
7
4
|
import { addListener, removeListener } from "resize-detector";
|
|
@@ -20,23 +17,6 @@ var render = function() {
|
|
|
20
17
|
};
|
|
21
18
|
var staticRenderFns = [];
|
|
22
19
|
const ECharts_vue_vue_type_style_index_0_lang = "";
|
|
23
|
-
echarts.use([
|
|
24
|
-
TitleComponent,
|
|
25
|
-
TooltipComponent,
|
|
26
|
-
GridComponent,
|
|
27
|
-
LegendComponent,
|
|
28
|
-
DatasetComponent,
|
|
29
|
-
PolarComponent,
|
|
30
|
-
CanvasRenderer,
|
|
31
|
-
BarChart,
|
|
32
|
-
LineChart,
|
|
33
|
-
PieChart,
|
|
34
|
-
RadarChart,
|
|
35
|
-
MapChart,
|
|
36
|
-
ScatterChart,
|
|
37
|
-
EffectScatterChart,
|
|
38
|
-
PictorialBarChart
|
|
39
|
-
]);
|
|
40
20
|
const INIT_TRIGGERS = ["theme", "initOptions", "autoResize"];
|
|
41
21
|
const REWATCH_TRIGGERS = ["manualUpdate", "watchShallow"];
|
|
42
22
|
const __vue2_script = {
|
package/dist/index.es.js
CHANGED
|
@@ -75,10 +75,7 @@ import OverlayScrollbars from "overlayscrollbars";
|
|
|
75
75
|
import "overlayscrollbars/css/OverlayScrollbars.css";
|
|
76
76
|
import { dialog } from "@web-utils/vue/mixin/dialog";
|
|
77
77
|
import Vue from "vue";
|
|
78
|
-
import echarts from "echarts/
|
|
79
|
-
import { BarChart, LineChart, PieChart, RadarChart, MapChart, ScatterChart, EffectScatterChart, PictorialBarChart } from "echarts/charts";
|
|
80
|
-
import { TitleComponent, TooltipComponent, GridComponent, LegendComponent, DatasetComponent, PolarComponent } from "echarts/components";
|
|
81
|
-
import { CanvasRenderer } from "echarts/renderers";
|
|
78
|
+
import * as echarts from "echarts/core";
|
|
82
79
|
import { debounce, cloneDeep, merge } from "@web-utils/integrations/lodash";
|
|
83
80
|
import { addListener, removeListener } from "resize-detector";
|
|
84
81
|
import { addResizeListener, removeResizeListener } from "@web-utils/integrations/resize";
|
|
@@ -8372,23 +8369,6 @@ var render$2r = function() {
|
|
|
8372
8369
|
};
|
|
8373
8370
|
var staticRenderFns$2r = [];
|
|
8374
8371
|
const ECharts_vue_vue_type_style_index_0_lang = "";
|
|
8375
|
-
echarts.use([
|
|
8376
|
-
TitleComponent,
|
|
8377
|
-
TooltipComponent,
|
|
8378
|
-
GridComponent,
|
|
8379
|
-
LegendComponent,
|
|
8380
|
-
DatasetComponent,
|
|
8381
|
-
PolarComponent,
|
|
8382
|
-
CanvasRenderer,
|
|
8383
|
-
BarChart,
|
|
8384
|
-
LineChart,
|
|
8385
|
-
PieChart,
|
|
8386
|
-
RadarChart,
|
|
8387
|
-
MapChart,
|
|
8388
|
-
ScatterChart,
|
|
8389
|
-
EffectScatterChart,
|
|
8390
|
-
PictorialBarChart
|
|
8391
|
-
]);
|
|
8392
8372
|
const INIT_TRIGGERS = ["theme", "initOptions", "autoResize"];
|
|
8393
8373
|
const REWATCH_TRIGGERS = ["manualUpdate", "watchShallow"];
|
|
8394
8374
|
const __vue2_script$2D = {
|
|
@@ -52091,7 +52071,7 @@ function __vue2_injectStyles(context) {
|
|
|
52091
52071
|
const Watermark = /* @__PURE__ */ function() {
|
|
52092
52072
|
return __component__.exports;
|
|
52093
52073
|
}();
|
|
52094
|
-
const version = "2.7.
|
|
52074
|
+
const version = "2.7.35";
|
|
52095
52075
|
function index(Vue2) {
|
|
52096
52076
|
Vue2.component(AddressInput.name, AddressInput);
|
|
52097
52077
|
Vue2.component(Affix.name, Affix);
|
package/package.json
CHANGED